From 1402f7006dad0f8af5fdca7ba46f0bdce2e42e73 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Fri, 6 May 2022 20:15:27 +0600 Subject: [PATCH] remove one extra break line --- 1-js/08-prototypes/01-prototype-inheritance/article.md | 1 - 1 file changed, 1 deletion(-) diff --git a/1-js/08-prototypes/01-prototype-inheritance/article.md b/1-js/08-prototypes/01-prototype-inheritance/article.md index 8cb301c8..ef6c7ffe 100644 --- a/1-js/08-prototypes/01-prototype-inheritance/article.md +++ b/1-js/08-prototypes/01-prototype-inheritance/article.md @@ -131,7 +131,6 @@ There are only two limitations: Also it may be obvious, but still: there can be only one `[[Prototype]]`. An object may not inherit from two others. - ```smart header="`__proto__` is a historical getter/setter for `[[Prototype]]`" It's a common mistake of novice developers not to know the difference between these two.