Skip to content

Commit c68209e

Browse files
committed
Fix heading
1 parent 30daf5e commit c68209e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/utils/property-names/lib/builtin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Returns an array of an object's own enumerable and non-enumerable property names.
2525
*
26-
* ## Note
26+
* ## Notes
2727
*
2828
* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.
2929
*

lib/node_modules/@stdlib/utils/property-names/lib/polyfill.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var keys = require( '@stdlib/utils/keys' );
2828
/**
2929
* Returns an array of an object's own enumerable and non-enumerable property names.
3030
*
31-
* ## Note
31+
* ## Notes
3232
*
3333
* - In contrast to the built-in `Object.getOwnPropertyNames()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.
3434
* - In environments lacking support for `Object.getOwnPropertyNames()`, property descriptors are unavailable, and thus all properties can be safely assumed to be enumerable. Hence, we can defer to calling `Object.keys`, which retrieves all own enumerable property names.

lib/node_modules/@stdlib/utils/property-symbols/lib/builtin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Returns an array of an object's own symbol properties.
2525
*
26-
* ## Note
26+
* ## Notes
2727
*
2828
* - In contrast to the built-in `Object.getOwnPropertySymbols()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.
2929
*

lib/node_modules/@stdlib/utils/property-symbols/lib/polyfill.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* Returns an array of an object's own symbol properties.
2525
*
26-
* ## Note
26+
* ## Notes
2727
*
2828
* - In contrast to the built-in `Object.getOwnPropertySymbols()`, this function returns an empty array if provided `undefined` or `null`, rather than throwing an error.
2929
*

0 commit comments

Comments
 (0)