From 060d8fe8fdd0073bca17d7c08799fd7a49cebd25 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 7 May 2022 14:42:05 +0600 Subject: [PATCH] remove another one extra break line --- 1-js/09-classes/02-class-inheritance/article.md | 1 - 1 file changed, 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 733d5fb4..590eb1f1 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -374,7 +374,6 @@ Luckily, this behavior only reveals itself if an overridden field is used in the If it becomes a problem, one can fix it by using methods or getters/setters instead of fields. - ## Super: internals, [[HomeObject]] ```warn header="Advanced information"