Skip to content

Commit a1bb001

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

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 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-15)
7+
## Unreleased (2025-08-18)
88

99
<section class="features">
1010

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

158158
<details>
159159

160+
- [`1f1c5d8`](https://github.com/stdlib-js/stdlib/commit/1f1c5d8bc3bdc88c03da5fd93ca7ef5606ada63d) - **docs:** fix variable name of main export in example code _(by Philipp Burckhardt)_
161+
- [`4c33ef4`](https://github.com/stdlib-js/stdlib/commit/4c33ef4cf6c629ed8129bd67c137755a7b75f920) - **chore:** re-order requires _(by Philipp Burckhardt)_
160162
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_
161163
- [`97f0e11`](https://github.com/stdlib-js/stdlib/commit/97f0e11fad5ac045777328c45d2ff595f568a5e0) - **chore:** use canonical format for JSDoc union types _(by Philipp Burckhardt)_
162164
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_

every-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/every-by
2525
*
2626
* @example
27-
* var every = require( '@stdlib/utils/every-by' );
27+
* var everyBy = require( '@stdlib/utils/every-by' );
2828
*
2929
* function isPositive( v ) {
3030
* return ( v > 0 );

push/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/push
2525
*
2626
* @example
27-
* var push = require( '@stdlib/utils/push' );
2827
* var Float64Array = require( '@stdlib/array/float64' );
28+
* var push = require( '@stdlib/utils/push' );
2929
*
3030
* var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
3131
*

0 commit comments

Comments
 (0)