Skip to content

Commit c70d3f3

Browse files
authored
Update design.md
1 parent ba130ea commit c70d3f3

File tree

1 file changed

+3
-4
lines changed
  • exercises/concept/ellens-alien-game/.meta

1 file changed

+3
-4
lines changed

exercises/concept/ellens-alien-game/.meta/design.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ The goal of this exercise is to introduce the student to the concept of classes.
1313
- Know how to create a class.
1414
- Know how to create objects.
1515
- Understand that instantiating a class creates an object.
16-
- Know that `__init__()` is what is known as a 'constructor'.
17-
- Know that `__init__()` is called upon object creation.
18-
- Know that `__init__()` is used to initialize the object upon instantiation.
16+
- Know that `__init__()` is a 'constructor' and is used to initialize the object upon instantiation.
17+
- Know that `__init__()` is called upon instantiation/object creation.
1918
- Know what a method is and how it differs from a function.
2019
- Know how to create a method.
2120
- Implement instance variables.
2221
- Implement class variables.
2322
- Understand the difference between instance and class variables.
24-
- Use `pass` as a placeholder for class methods
23+
- Use `pass` as a placeholder for class methods.
2524

2625
## Out of scope
2726

0 commit comments

Comments
 (0)