From e32b33cc353ab09d36ba5edb2468f5e3b11fba7a Mon Sep 17 00:00:00 2001 From: Omprakash Panigrahi Date: Mon, 6 Dec 2021 17:49:34 +0530 Subject: [PATCH] Fix sentence sentence correction Line 678. but allowing -> by allowing. --- get-started/ch2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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