Skip to content

Commit 077fd84

Browse files
authored
Merge pull request #1242 from smkoyan/patch-2
Update article.md
2 parents 6cad8d5 + 52f36e4 commit 077fd84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/99-js-misc/01-proxy/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To activate more capabilities, let's add traps.
4545

4646
What can we intercept by them?
4747

48-
For most operations on objects, there's a so-called "internal method" in JavaScript specificaiton, that describes on the lowest level, how it works. For instance, `[[Get]]` - the internal method to read a property, `[[Set]]` -- the internal method to write a property, and so on. These methods are only used in the specification, we can't them directly by name.
48+
For most operations on objects, there's a so-called "internal method" in JavaScript specificaiton, that describes on the lowest level, how it works. For instance, `[[Get]]` - the internal method to read a property, `[[Set]]` -- the internal method to write a property, and so on. These methods are only used in the specification, we can't call them directly by name.
4949

5050
Proxy traps inercept invocations of these methods. They are listed in [Proxy specification](https://tc39.es/ecma262/#sec-proxy-object-internal-methods-and-internal-slots) and in the table below.
5151

0 commit comments

Comments
 (0)