Skip to content

Commit 9aff05e

Browse files
authored
Merge pull request ruanyf#864 from wheatma/gh-pages
docs(reflect): 🎨fix format
2 parents 40b7a92 + 77e862e commit 9aff05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/reflect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Reflect.has(Object, 'assign') // true
4040
```javascript
4141
Proxy(target, {
4242
set: function(target, name, value, receiver) {
43-
var success = Reflect.set(target,name, value, receiver);
43+
var success = Reflect.set(target, name, value, receiver);
4444
if (success) {
4545
console.log('property ' + name + ' on ' + target + ' set to ' + value);
4646
}

0 commit comments

Comments
 (0)