From 14163bbe757419b6e23b0fbbb1327706afeded1a Mon Sep 17 00:00:00 2001 From: Alaa Bouayed Date: Sun, 21 Apr 2019 23:23:03 +0100 Subject: [PATCH] Grammar --- 1-js/08-prototypes/04-prototype-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/08-prototypes/04-prototype-methods/article.md b/1-js/08-prototypes/04-prototype-methods/article.md index 3a925ab18c..ac92ce03a7 100644 --- a/1-js/08-prototypes/04-prototype-methods/article.md +++ b/1-js/08-prototypes/04-prototype-methods/article.md @@ -76,7 +76,7 @@ That's for historical reasons. As of now we have all these ways at our disposal. -Why `__proto__` was replaced by the functions? That's an interesting question, requiring us to understand why `__proto__` is bad. Read on to get the answer. +Why was `__proto__` replaced by the functions? That's an interesting question, requiring us to understand why `__proto__` is bad. Read on to get the answer. ```warn header="Don't reset `[[Prototype]]` unless the speed doesn't matter" Technically, we can get/set `[[Prototype]]` at any time. But usually we only set it once at the object creation time, and then do not modify: `rabbit` inherits from `animal`, and that is not going to change.