Skip to content

Commit 3df6388

Browse files
authored
Merge pull request #1320 from shembel/Typo_in_proxy_article
Typo fix
2 parents a072018 + 1a6c1bb commit 3df6388

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/99-js-misc/01-proxy/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ It triggers when a property is read, with following arguments:
9595

9696
- `target` -- is the target object, the one passed as the first argument to `new Proxy`,
9797
- `property` -- property name,
98-
- `receiver` -- if the target property is a getter, then `receiver` is the object that's going to be used as `this` in its call. Usually that's the `proxy` object itself (or an object that inherits from it, if we inherit from proxy). Right now we don't need this argument, will be explained in more details letter.
98+
- `receiver` -- if the target property is a getter, then `receiver` is the object that's going to be used as `this` in its call. Usually that's the `proxy` object itself (or an object that inherits from it, if we inherit from proxy). Right now we don't need this argument, will be explained in more details later.
9999

100100
Let's use `get` to implement default values for an object.
101101

0 commit comments

Comments
 (0)