From df9c3ac0068118955049c83e3c07c74488af30de Mon Sep 17 00:00:00 2001 From: Hemanthh75 <122736877+Hemanthh75@users.noreply.github.com> Date: Mon, 24 Aug 2026 12:02:33 +0530 Subject: [PATCH] Corrected example of object instantiation in documentation --- 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 be9e8dba0..3fcc5cf5f 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -72,7 +72,7 @@ We have created an Person class but it does not have any thing inside. Instantiation class means creating an object from a class. We need the keyword _new_ and we call the name of the class after the word new. -Let us create a dog object from our Person class. +Let us create a person object from our Person class. ```js class Person {