Skip to content

Commit 1357a8e

Browse files
committed
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
2 parents bfa394a + 80d2f50 commit 1357a8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/object.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ Object.getOwnPropertyDescriptors(obj)
707707
// enumerable: true,
708708
// configurable: true },
709709
// bar:
710-
// { get: [Function: bar],
710+
// { get: [Function: get bar],
711711
// set: undefined,
712712
// enumerable: true,
713713
// configurable: true } }
@@ -761,7 +761,7 @@ const target2 = {};
761761
Object.defineProperties(target2, Object.getOwnPropertyDescriptors(source));
762762
Object.getOwnPropertyDescriptor(target2, 'foo')
763763
// { get: undefined,
764-
// set: [Function: foo],
764+
// set: [Function: set foo],
765765
// enumerable: true,
766766
// configurable: true }
767767
```

0 commit comments

Comments
 (0)