Skip to content

Commit 87a7f18

Browse files
committed
Auto-generated commit
1 parent 5f7f634 commit 87a7f18

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 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 (2026-04-17)
7+
## Unreleased (2026-04-18)
88

99
<section class="features">
1010

@@ -844,6 +844,7 @@ A total of 49 issues were closed in this release:
844844

845845
<details>
846846

847+
- [`3af178c`](https://github.com/stdlib-js/stdlib/commit/3af178cc07862b3070234245f015a4bdc8370acb) - **style:** use single quotes for require calls [(#11516)](https://github.com/stdlib-js/stdlib/pull/11516) _(by Philipp Burckhardt)_
847848
- [`5426e50`](https://github.com/stdlib-js/stdlib/commit/5426e503c7239b8672e8f2c9621ec0dfc9dcf391) - **docs:** improve doctests for ndarray instances in `ndarray/to-reversed` [(#11506)](https://github.com/stdlib-js/stdlib/pull/11506) _(by Uday Kakade, Athan Reines)_
848849
- [`448abe7`](https://github.com/stdlib-js/stdlib/commit/448abe7364d055ee1f0e069276024ad9fec9c179) - **docs:** improve doctests for ndarray instances in `ndarray/reverse` [(#11508)](https://github.com/stdlib-js/stdlib/pull/11508) _(by Uday Kakade)_
849850
- [`4c6c7a1`](https://github.com/stdlib-js/stdlib/commit/4c6c7a13a022fb679e9f7793ce06b06674b21956) - **docs:** improve doctests for ndarray instances in `ndarray/base/reverse` [(#11509)](https://github.com/stdlib-js/stdlib/pull/11509) _(by Uday Kakade)_

base/to-unflattened/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3131
* @returns output array
3232
*
3333
* @example
34-
* var array = require( `@stdlib/ndarray/array` );
34+
* var array = require( '@stdlib/ndarray/array' );
3535
*
3636
* var x = array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
3737
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]

base/unflatten/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { ndarray } from '@stdlib/types/ndarray';
3232
* @returns output array
3333
*
3434
* @example
35-
* var array = require( `@stdlib/ndarray/array` );
35+
* var array = require( '@stdlib/ndarray/array' );
3636
*
3737
* var x = array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
3838
* // returns <ndarray>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]

remove-singleton-dimensions/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
2929
* @returns output array
3030
*
3131
* @example
32-
* var array = require( `@stdlib/ndarray/array` );
32+
* var array = require( '@stdlib/ndarray/array' );
3333
*
3434
* var x = array( [ [ 1, 2 ], [ 3, 4 ] ], {
3535
* 'ndmin': 5

0 commit comments

Comments
 (0)