diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md
index be9e8db..2f2767e 100644
--- a/15_Day_Classes/15_day_classes.md
+++ b/15_Day_Classes/15_day_classes.md
@@ -551,7 +551,7 @@ The static methods are methods which can be used as utility functions.
 
 ## Inheritance
 
-Using inheritance we can access all the properties and the methods of the parent class. This reduces repetition of code. If you remember, we have a Person parent class and we will create children from it. Our children class could be student, teach etc.
+Using inheritance we can access all the properties and the methods of the parent class. This reduces repetition of code. If you remember, we have a Person parent class and we will create children from it. Our children class could be student, teacher etc.
 
 ```js
 // syntax