diff --git a/1-js/09-classes/02-class-inheritance/article.md b/1-js/09-classes/02-class-inheritance/article.md index c79a0aa4..f098b2fa 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 {