From 817dbd94f47dc6484ba4ec9fa3de0d138c39be79 Mon Sep 17 00:00:00 2001 From: Aman Bangad Date: Fri, 2 Jun 2017 11:17:54 -0400 Subject: [PATCH] Update article.md adding this --- .../10-class-inheritance/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/10-class-inheritance/article.md b/1-js/07-object-oriented-programming/10-class-inheritance/article.md index a26f7bcb..1fe66877 100644 --- a/1-js/07-object-oriented-programming/10-class-inheritance/article.md +++ b/1-js/07-object-oriented-programming/10-class-inheritance/article.md @@ -125,7 +125,7 @@ class Rabbit extends Animal { *!* stop() { super.stop(); // call parent stop - hide(); // and then hide + this.hide(); // and then hide } */!* }