From 5e788c55970493ee987b48b72af8a41d01919310 Mon Sep 17 00:00:00 2001 From: Mani Nilchiani Date: Sat, 29 Jul 2017 01:07:09 -0400 Subject: [PATCH] Small typo --- .../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 27c67e32..e002014f 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 @@ -75,7 +75,7 @@ function Rabbit() {} alert( Rabbit.prototype.constructor == Rabbit ); // true ``` -Naturally, it we do nothing, the `constructor` property is available to all rabbits through `[[Prototype]]`: +Naturally, if we do nothing, the `constructor` property is available to all rabbits through `[[Prototype]]`: ```js run function Rabbit() {}