From ff1371f369816220059559e6fef6b30abbde0655 Mon Sep 17 00:00:00 2001 From: Nikolay Fedoseev Date: Fri, 28 Jul 2017 17:30:43 +0500 Subject: [PATCH] Fix typo --- .../07-object-oriented-programming/08-class-patterns/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/08-class-patterns/article.md b/1-js/07-object-oriented-programming/08-class-patterns/article.md index 83c312a2..d548e20d 100644 --- a/1-js/07-object-oriented-programming/08-class-patterns/article.md +++ b/1-js/07-object-oriented-programming/08-class-patterns/article.md @@ -182,7 +182,7 @@ Right now they are fully independent. But we'd want `Rabbit` to extend `Animal`. In other words, rabbits should be based on animals, have access to methods of `Animal` and extend them with its own methods. -What does it mean in the language on prototypes? +What does it mean in the language of prototypes? Right now methods for `rabbit` objects are in `Rabbit.prototype`. We'd like `rabbit` to use `Animal.prototype` as a "fallback", if the method is not found in `Rabbit.prototype`.