Skip to content

Commit 7846513

Browse files
committed
Auto-generated commit
1 parent a1bb001 commit 7846513

File tree

12 files changed

+15
-12
lines changed

12 files changed

+15
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-18)
7+
## Unreleased (2025-08-20)
88

99
<section class="features">
1010

@@ -157,6 +157,9 @@ A total of 6 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`e9c5955`](https://github.com/stdlib-js/stdlib/commit/e9c5955756fe9c633f6f67e42882394cc7c50148) - **docs:** update annotation to convey there may be inherited props _(by Philipp Burckhardt)_
161+
- [`bef0f69`](https://github.com/stdlib-js/stdlib/commit/bef0f69a3c1007126ef264c4148c41497079eaad) - **docs:** re-order requires _(by Philipp Burckhardt)_
162+
- [`1acd7fc`](https://github.com/stdlib-js/stdlib/commit/1acd7fc7114fcbef1b80ab506f6f47d3532d6ea8) - **docs:** fix example code _(by Philipp Burckhardt)_
160163
- [`1f1c5d8`](https://github.com/stdlib-js/stdlib/commit/1f1c5d8bc3bdc88c03da5fd93ca7ef5606ada63d) - **docs:** fix variable name of main export in example code _(by Philipp Burckhardt)_
161164
- [`4c33ef4`](https://github.com/stdlib-js/stdlib/commit/4c33ef4cf6c629ed8129bd67c137755a7b75f920) - **chore:** re-order requires _(by Philipp Burckhardt)_
162165
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_

deep-pluck/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/utils/deep-pluck
2525
*
2626
* @example
27-
* var pluck = require( '@stdlib/utils/deep-pluck' );
27+
* var deepPluck = require( '@stdlib/utils/deep-pluck' );
2828
*
2929
* var arr = [
3030
* {'a':{'b':{'c':1}}},

enumerable-properties-in/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var enumerablePropertiesIn = require( '@stdlib/utils/enumerable-properties-in' );
2828
*
2929
* var props = enumerablePropertiesIn( [] );
30-
* // returns [...]
30+
* // e.g., returns [...]
3131
*/
3232

3333
// MODULES //

flatten-object/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* var flattenObject = require( '@stdlib/utils/flatten-object' );
3636
*
3737
* var flatten = flattenObject.factory({
38-
* 'depth': 2,
38+
* 'depth': 1,
3939
* 'copy': true,
4040
* 'delimiter': '|'
4141
* });

map-reduce-right/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
* var arr = [ 1, 2, 3, 4 ];
3838
*
39-
* var out = mapReduceRight( arr, 0, sum );
39+
* var out = mapReduceRight( arr, 0, square, sum );
4040
* // returns 30
4141
*
4242
* @example

map-reduce/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
* var arr = [ 1, 2, 3, 4 ];
3838
*
39-
* var out = mapReduce( arr, 0, sum );
39+
* var out = mapReduce( arr, 0, square, sum );
4040
* // returns 30
4141
*
4242
* @example

map2/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* var x = array( [ [ 1, 2, 3 ], [ 4, 5, 6 ] ], opts );
4747
* var y = array( [ [ 1, 1, 1 ], [ 1, 1, 1 ] ], opts );
4848
*
49-
* var out = map2( x, y. naryFunction( add, 2 ) );
49+
* var out = map2( x, y, naryFunction( add, 2 ) );
5050
* // returns <ndarray>
5151
*
5252
* var data = out.data;

none-by/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/utils/none-by
2525
*
2626
* @example
27-
* var none = require( '@stdlib/utils/none-by' );
27+
* var noneBy = require( '@stdlib/utils/none-by' );
2828
*
2929
* function isPositive( v ) {
3030
* return ( v > 0 );

none-own-by/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* };
3838
*
3939
* var bool = noneOwnBy( obj, isUnderage );
40-
* // returns true
40+
* // returns false
4141
*/
4242

4343
// MODULES //

pop/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* @module @stdlib/utils/pop
2525
*
2626
* @example
27-
* var pop = require( '@stdlib/utils/pop' );
2827
* var Float64Array = require( '@stdlib/array/float64' );
28+
* var pop = require( '@stdlib/utils/pop' );
2929
*
3030
* var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
3131
*

0 commit comments

Comments
 (0)