From 2f56ecf1a7b09fa66ddedba9d0e91f6433b91219 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 7 May 2022 14:30:39 +0600 Subject: [PATCH] add a missed break line --- 1-js/09-classes/02-class-inheritance/article.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1-js/09-classes/02-class-inheritance/article.md b/1-js/09-classes/02-class-inheritance/article.md index 8790465b..ef91edeb 100644 --- a/1-js/09-classes/02-class-inheritance/article.md +++ b/1-js/09-classes/02-class-inheritance/article.md @@ -160,6 +160,7 @@ Now `Rabbit` has the `stop` method that calls the parent `super.stop()` in the p As was mentioned in the chapter , arrow functions do not have `super`. If accessed, it's taken from the outer function. For instance: + ```js class Rabbit extends Animal { stop() {