Skip to content

Commit f4cea48

Browse files
authored
Update hints.md
1 parent 3dbffe5 commit f4cea48

File tree

1 file changed

+5
-5
lines changed
  • exercises/concept/ellens-alien-game/.docs

1 file changed

+5
-5
lines changed

exercises/concept/ellens-alien-game/.docs/hints.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## 1. Create the Alien Class
44

55
- Remember that class methods are always passed `self` as the first parameter.
6-
- Remember the double underscores on _both_ sides of `__init__`
7-
- Instance variables are unique to the object/class instance that posesses them
8-
- Class variables are the same across all instances of a class
6+
- Remember the double underscores on _both_ sides of `__init__`.
7+
- Instance variables are unique to the object/class instance that posesses them.
8+
- Class variables are the same across all instances of a class.
99

1010
## 2. The `hit` Method
1111

@@ -14,7 +14,7 @@
1414
## 3. The `is_alive` Method
1515

1616
- Remember that class methods are always passed `self` as the first parameter.
17-
- 0 is not the only 'dead' condition
17+
- 0 is not the only 'dead' condition.
1818

1919
## 4. The `teleport` Method
2020

@@ -27,7 +27,7 @@
2727

2828
## 6. Alien Counter
2929

30-
- Class variables are the same across all instances of a class
30+
- Class variables are the same across all instances of a class.
3131

3232
## 7. Object Creation
3333

0 commit comments

Comments
 (0)