From 3be0d3ed0b2f62467238297cb051b1498a1ba3e5 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 7 May 2022 14:17:41 +0600 Subject: [PATCH] remove 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 48c9e468..8790465b 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -176,7 +176,6 @@ setTimeout(function() { super.stop() }, 1000); ``` ```` - ## Overriding constructor With constructors it gets a little bit tricky.