From f1a48107fca566d12df5e693cf318031a4b26857 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?=
 <ayyildizabdurrahman@gmail.com>
Date: Wed, 24 Aug 2022 01:09:45 +0300
Subject: [PATCH] Update 15_day_classes.md

---
 15_Day_Classes/15_day_classes.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.