Skip to content

Commit

Permalink
docs(proxy): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JayKan committed Mar 15, 2018
1 parent 79608b5 commit b559ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ p() === 'I am the proxy';
// JavaScript operation. The methods are the same as those of proxy
// handlers. Reflect is not a function object, so it's not constructable.

var advance = new Proxy({}, {
var advanced = new Proxy({}, {
get(target, property, receiver) {
console.log(`get called for field: ${property}`);
return Reflect.get(target, property, receiver);
Expand Down

0 comments on commit b559ef6

Please sign in to comment.