Skip to content

Commit 17246d8

Browse files
committed
docs(proxy): fixed #1167 Proxy get()
1 parent b1b35cd commit 17246d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/proxy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ const proxy = new Proxy({}, {
286286
proxy.getReceiver === proxy // true
287287
```
288288

289-
上面代码中,`proxy`对象的`getReceiver`属性是由`proxy`对象提供的,所以`receiver`指向`proxy`对象。
289+
上面代码中,`proxy`对象的`getReceiver`属性会被`get()`拦截,得到的返回值就是`proxy`对象。
290290

291291
```javascript
292292
const proxy = new Proxy({}, {

0 commit comments

Comments
 (0)