From b70d33217a263c0ac53f4285899639baef99f388 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Thu, 12 May 2022 18:01:02 +0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=BE=20smth?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/09-classes/02-class-inheritance/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/02-class-inheritance/article.md b/1-js/09-classes/02-class-inheritance/article.md index c79a0aa420..f098b2fa9e 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -327,7 +327,7 @@ What's odd about it? If it's not clear yet, please compare with methods. -Here's the same code, but instead of `this.name` field, we call `this.showName()` method: +Here's the same code, but instead of `this.name` field we call `this.showName()` method: ```js run class Animal {