Skip to content

Commit 706b1f2

Browse files
committed
fixes
1 parent 92f7f1b commit 706b1f2

File tree

2 files changed

+2
-2
lines changed
  • 1-js

2 files changed

+2
-2
lines changed

1-js/07-object-properties/02-property-accessors/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Once a property is defined with `get prop()` or `set prop()`, it's an accessor p
9090
- If there's a getter -- we can read `object.prop`, othrewise we can't.
9191
- If there's a setter -- we can set `object.prop=...`, othrewise we can't.
9292
93-
And in either case we can't `delete` an accessor property.
93+
And in either case we can't `delete` an accessor property.
9494
```
9595

9696

1-js/08-prototypes/04-prototype-methods/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Plain objects: no __proto__
2+
# Prototype methods, objects without __proto__
33

44
In the first chapter of this section, we mentioned that there are modern methods to setup a prototype.
55

0 commit comments

Comments
 (0)