From b1bee552b2ef29946a94dd516e5aa0b38ba1e8bb Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Sun, 29 Nov 2020 17:45:05 +0200 Subject: [PATCH] Fix typo in 1.99.1 (Proxy and Reflect) --- 1-js/99-js-misc/01-proxy/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/99-js-misc/01-proxy/article.md b/1-js/99-js-misc/01-proxy/article.md index 922c9ce0..c5b02704 100644 --- a/1-js/99-js-misc/01-proxy/article.md +++ b/1-js/99-js-misc/01-proxy/article.md @@ -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 *!*