Merge pull request #2329 from vsemozhetbyt/patch-2

Fix typo in 1.99.1 (Proxy and Reflect)
This commit is contained in:
Ilya Kantor 2020-12-05 19:29:26 +03:00 committed by GitHub
commit 9fab25a7a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -969,7 +969,7 @@ Initially, `revoke` is separate from `proxy`, so that we can pass `proxy` around
We can also bind `revoke` method to proxy by setting `proxy.revoke = revoke`.
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:
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:
```js run
*!*