diff --git a/get-started/ch2.md b/get-started/ch2.md index 3f45da895..4c3402c69 100644 --- a/get-started/ch2.md +++ b/get-started/ch2.md @@ -673,7 +673,7 @@ Notice that both child class instances have a `print()` method, which was an ove The fact that both the inherited and overridden methods can have the same name and co-exist is called *polymorphism*. -Inheritance is a powerful tool for organizing data/behavior in separate logical units (classes), but allowing the child class to cooperate with the parent by accessing/using its behavior and data. +Inheritance is a powerful tool for organizing data/behavior in separate logical units (classes), by allowing the child class to cooperate with the parent by accessing/using its behavior and data. ### Modules