From b17f39f2e87b1a0140e9ba136e0dab2e393c0612 Mon Sep 17 00:00:00 2001 From: daGo Date: Thu, 10 Jan 2019 10:36:36 +0300 Subject: [PATCH] typo Or, alternatively, recreate the constructor property it manually: -> Or, alternatively, recreate the constructor property manually: --- .../04-function-prototype/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/04-function-prototype/article.md b/1-js/07-object-oriented-programming/04-function-prototype/article.md index d4b45385..58c7a0c5 100644 --- a/1-js/07-object-oriented-programming/04-function-prototype/article.md +++ b/1-js/07-object-oriented-programming/04-function-prototype/article.md @@ -139,7 +139,7 @@ Rabbit.prototype.jumps = true // the default Rabbit.prototype.constructor is preserved ``` -Or, alternatively, recreate the `constructor` property it manually: +Or, alternatively, recreate the `constructor` property manually: ```js Rabbit.prototype = {