From 35d465c62bd6b280c16f83f698c5110829673ee3 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 7 May 2022 15:55:32 +0600 Subject: [PATCH] add comma --- 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 590eb1f1..d46be273 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 {