Fix typo in 1.99.1 (Proxy and Reflect)

This commit is contained in:
Vse Mozhe Buty 2020-11-29 17:45:05 +02:00 committed by GitHub
parent e1a3f634a4
commit b1bee552b2
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
*!*