From f5ee8780bca4f61090e7dc2a81ff2de3cded48e8 Mon Sep 17 00:00:00 2001 From: Vikas Sharma Date: Thu, 11 Dec 2025 01:16:53 +0530 Subject: [PATCH] fix(curriculum): replace smart quotes with straight quotes (#64471) --- .../673403ca2bb16658309e3632.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-understanding-how-to-work-with-classes-in-javascript/673403ca2bb16658309e3632.md b/curriculum/challenges/english/blocks/lecture-understanding-how-to-work-with-classes-in-javascript/673403ca2bb16658309e3632.md index 80d99b3753e..8fad6c431c9 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-how-to-work-with-classes-in-javascript/673403ca2bb16658309e3632.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-how-to-work-with-classes-in-javascript/673403ca2bb16658309e3632.md @@ -52,7 +52,7 @@ We also have a new `showPrice` method. In this method, we print a descriptive me Notice how we're using the `this` keyword to access the properties of the object within the `showPrice` method. -What value will the `this` keyword have in the context of this method? It will refer to the object on which the method is being called. In this case, we're creating a new Dessert instance with the name `“Brownie”` and the price `$5.99`: +What value will the `this` keyword have in the context of this method? It will refer to the object on which the method is being called. In this case, we're creating a new Dessert instance with the name `"Brownie"` and the price `$5.99`: ```js const brownie = new Dessert("Brownie", 5.99);