Skip to content

Commit b1bee55

Browse files
authored
Fix typo in 1.99.1 (Proxy and Reflect)
1 parent e1a3f63 commit b1bee55

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
@@ -969,7 +969,7 @@ Initially, `revoke` is separate from `proxy`, so that we can pass `proxy` around
969969

970970
We can also bind `revoke` method to proxy by setting `proxy.revoke = revoke`.
971971

972-
Another option is to create a `WeakMap` that has `proxy` as the key the corresponding `revoke` as the value, that allows to easily find `revoke` for a proxy:
972+
Another option is to create a `WeakMap` that has `proxy` as the key and the corresponding `revoke` as the value, that allows to easily find `revoke` for a proxy:
973973

974974
```js run
975975
*!*

0 commit comments

Comments
 (0)