Skip to content

Commit 29db93e

Browse files
Update article.md
1 parent 69bd4b5 commit 29db93e

File tree

1 file changed

+1
-1
lines changed
  • 1-js/07-object-oriented-programming/01-property-descriptors

1 file changed

+1
-1
lines changed

1-js/07-object-oriented-programming/01-property-descriptors/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The non-configurable flag (`configurable:false`) is sometimes preset for built-i
191191

192192
A non-configurable property can not be deleted or altered with `defineProperty`.
193193

194-
For instance, `Math.PI` is both read-only, non-enumerable and non-configurable:
194+
For instance, `Math.PI` is read-only, non-enumerable and non-configurable:
195195

196196
```js run
197197
let descriptor = Object.getOwnPropertyDescriptor(Math, 'PI');

0 commit comments

Comments
 (0)