From f12e89a1e912ffabf0a3ccb65ea0e8fe7059078a Mon Sep 17 00:00:00 2001 From: Daria Pimenova Date: Thu, 7 Nov 2019 09:52:46 +0400 Subject: [PATCH] Update article.md --- 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 2ea5ce6f..0ae375f7 100644 --- a/1-js/99-js-misc/01-proxy/article.md +++ b/1-js/99-js-misc/01-proxy/article.md @@ -593,7 +593,7 @@ Other traps exist: the full list is in the beginning of this chapter. Their usag `Reflect` is a built-in object that simplifies creation of `Proxy`. -It was said previously that internal methods, such as `[[Get]]`, `[[Set]]` and others are specifiction only, they can't be called directly. +It was said previously that internal methods, such as `[[Get]]`, `[[Set]]` and others are specification-only, they can't be called directly. The `Reflect` object makes that somewhat possible. Its methods are minimal wrappers around the internal methods.