From 67b68b9abf612fd2b91f431f8e68e7d9add7823a Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 29 Jun 2015 12:52:17 +0200 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=20=D0=BF=D0=BE=D1=81=D1=82=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B5=D0=B4=D0=BB=D0=BE=D0=B6?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/9-prototypes/1-prototype/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/9-prototypes/1-prototype/article.md b/1-js/9-prototypes/1-prototype/article.md index 49cdce41..3d83be6a 100644 --- a/1-js/9-prototypes/1-prototype/article.md +++ b/1-js/9-prototypes/1-prototype/article.md @@ -1,6 +1,6 @@ # Прототип объекта -Объекты в JavaScript можно организовать в цепочки, так, чтобы если свойство не найдено в одном объекте -- оно автоматически искалось бы его в другом. +Объекты в JavaScript можно организовать в цепочки так, чтобы свойство, не найденное в одном объекте, автоматически искалось бы в другом. Связующим звеном выступает специальное свойство `__proto__`. @@ -243,4 +243,4 @@ function inherit(proto) { return new F(); } -[/head] \ No newline at end of file +[/head]