From 88cd022adcdd09ccbe1b9cfb4911dd57b7893b04 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Mon, 21 Oct 2019 23:54:04 +0300 Subject: [PATCH] Update article.md According to https://github.com/javascript-tutorial/ru.javascript.info/pull/704 --- 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 b722d0be..a017a960 100644 --- a/1-js/99-js-misc/01-proxy/article.md +++ b/1-js/99-js-misc/01-proxy/article.md @@ -603,7 +603,7 @@ Here are examples of operations and `Reflect` calls that do the same: |-----------------|----------------|-------------| | `obj[prop]` | `Reflect.get(obj, prop)` | `[[Get]]` | | `obj[prop] = value` | `Reflect.set(obj, prop, value)` | `[[Set]]` | -| `delete obj[prop]` | `Reflect.deleteProperty(obj, prop)` | `[[HasProperty]]` | +| `delete obj[prop]` | `Reflect.deleteProperty(obj, prop)` | `[[Delete]]` | | `new F(value)` | `Reflect.construct(F, value)` | `[[Construct]]` | | ... | ... | ... |