From 706b1f26b25a9c1c812c1f4b0850ca3189f8275b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 23 Mar 2019 02:22:11 +0300 Subject: [PATCH] fixes --- 1-js/07-object-properties/02-property-accessors/article.md | 2 +- 1-js/08-prototypes/04-prototype-methods/article.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/07-object-properties/02-property-accessors/article.md b/1-js/07-object-properties/02-property-accessors/article.md index fea21c02..43cd5ae6 100644 --- a/1-js/07-object-properties/02-property-accessors/article.md +++ b/1-js/07-object-properties/02-property-accessors/article.md @@ -90,7 +90,7 @@ Once a property is defined with `get prop()` or `set prop()`, it's an accessor p - If there's a getter -- we can read `object.prop`, othrewise we can't. - If there's a setter -- we can set `object.prop=...`, othrewise we can't. -And in either case we can't `delete` an accessor property. +And in either case we can't `delete` an accessor property. ``` diff --git a/1-js/08-prototypes/04-prototype-methods/article.md b/1-js/08-prototypes/04-prototype-methods/article.md index 3314645e..3a925ab1 100644 --- a/1-js/08-prototypes/04-prototype-methods/article.md +++ b/1-js/08-prototypes/04-prototype-methods/article.md @@ -1,5 +1,5 @@ -# Plain objects: no __proto__ +# Prototype methods, objects without __proto__ In the first chapter of this section, we mentioned that there are modern methods to setup a prototype.