From 2addc4ca72a0f80d015dbfa2d21f4c8cb6f2a5fe Mon Sep 17 00:00:00 2001 From: Dave Dixon Date: Thu, 9 May 2019 06:58:18 -0700 Subject: [PATCH] Fix typo --- 1-js/07-object-properties/02-property-accessors/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 41207ab5..5b58b584 100644 --- a/1-js/07-object-properties/02-property-accessors/article.md +++ b/1-js/07-object-properties/02-property-accessors/article.md @@ -85,7 +85,7 @@ alert(user.surname); // Cooper Now we have a "virtual" property. It is readable and writable, but in fact does not exist. ```smart header="Accessor properties are only accessible with get/set" -Once a property is defined with `get prop()` or `set prop()`, it's an accessor property, not a data properety any more. +Once a property is defined with `get prop()` or `set prop()`, it's an accessor property, not a data property any more. - If there's a getter -- we can read `object.prop`, otherwise we can't. - If there's a setter -- we can set `object.prop=...`, otherwise we can't.