From 5fd99635073206b372b52aab9bff6ed6e7fc9b7f Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Sun, 15 Sep 2019 22:12:19 -0600 Subject: [PATCH] Update article.md Change "and" to "or". Goes better with "no". --- 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 8b0b3efe..f60c60b6 100644 --- a/1-js/07-object-properties/02-property-accessors/article.md +++ b/1-js/07-object-properties/02-property-accessors/article.md @@ -104,7 +104,7 @@ There's no similar method to handle deletion of an accessor property. Only gette Descriptors for accessor properties are different -- as compared with data properties. -For accessor properties, there is no `value` and `writable`, but instead there are `get` and `set` functions. +For accessor properties, there is no `value` or `writable`, but instead there are `get` and `set` functions. That is, an accessor descriptor may have: