We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b424224 + 7dd8334 commit 80d2f50Copy full SHA for 80d2f50
docs/object.md
@@ -707,7 +707,7 @@ Object.getOwnPropertyDescriptors(obj)
707
// enumerable: true,
708
// configurable: true },
709
// bar:
710
-// { get: [Function: bar],
+// { get: [Function: get bar],
711
// set: undefined,
712
713
// configurable: true } }
@@ -761,7 +761,7 @@ const target2 = {};
761
Object.defineProperties(target2, Object.getOwnPropertyDescriptors(source));
762
Object.getOwnPropertyDescriptor(target2, 'foo')
763
// { get: undefined,
764
-// set: [Function: foo],
+// set: [Function: set foo],
765
766
// configurable: true }
767
```
0 commit comments