diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md
index be9e8db..a05671c 100644
--- a/15_Day_Classes/15_day_classes.md
+++ b/15_Day_Classes/15_day_classes.md
@@ -40,7 +40,7 @@
 
 ## Classes
 
-JavaScript is an object oriented programming language. Everything in JavScript is an object, with its properties and methods. We create class to create an object. A Class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class.
+JavaScript is an object oriented programming language. Everything in JavaScript is an object, with its properties and methods. We create class to create an object. A Class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class.
 
 Once we create a class we can create object from it whenever we want. Creating an object from a class is called class instantiation.