Update article.md

Wording change on intro to "Accessor descriptors".
This commit is contained in:
paroche 2019-09-15 22:05:02 -06:00 committed by GitHub
parent 646989dd47
commit 19108b3a4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,7 +102,7 @@ There's no similar method to handle deletion of an accessor property. Only gette
## Accessor descriptors
Descriptors for accessor properties are different -- as compared with data properties.
Descriptors for accessor properties are different from those for data properties.
For accessor properties, there is no `value` and `writable`, but instead there are `get` and `set` functions.