Skip to content

Commit 42b6862

Browse files
committed
Auto-generated commit
1 parent 9b1621b commit 42b6862

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
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-03-27)
7+
## Unreleased (2026-03-29)
88

99
<section class="features">
1010

@@ -817,6 +817,7 @@ A total of 45 issues were closed in this release:
817817

818818
<details>
819819

820+
- [`a0169bc`](https://github.com/stdlib-js/stdlib/commit/a0169bcfc0d05ac94c206ac5d6d0a898ec304463) - **docs:** remove unused `ndarray2array` requires from README usage examples [(#11194)](https://github.com/stdlib-js/stdlib/pull/11194) _(by Philipp Burckhardt)_
820821
- [`3bf34ec`](https://github.com/stdlib-js/stdlib/commit/3bf34ec6df7f894f7cbee125eb3f655ebb2d6a4e) - **chore:** fix typos, grammar, and minor issues across multiple packages [(#11167)](https://github.com/stdlib-js/stdlib/pull/11167) _(by Philipp Burckhardt)_
821822
- [`28d3e7d`](https://github.com/stdlib-js/stdlib/commit/28d3e7d6b05b312ebf14896cb0d8593902e443cb) - **feat:** update `ndarray/base` TypeScript declarations [(#11166)](https://github.com/stdlib-js/stdlib/pull/11166) _(by stdlib-bot)_
822823
- [`762f410`](https://github.com/stdlib-js/stdlib/commit/762f410098b29afa3823ab1191553101db0dcead) - **fix:** correct grammar in ndarray type test comments [(#11154)](https://github.com/stdlib-js/stdlib/pull/11154) _(by Matt Van Horn)_

base/fliplr/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ Returns a view of an input ndarray in which the order of elements along the last
4747
```javascript
4848
var ndarray = require( '@stdlib/ndarray/ctor' );
4949
var getShape = require( '@stdlib/ndarray/shape' );
50-
var ndarray2array = require( '@stdlib/ndarray/to-array' );
5150

5251
var buffer = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
5352
var shape = [ 3, 2 ];

base/unary-strided1d-dispatch-factory/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ By default, the function returns an ndarray having a data type determined by the
129129
<!-- eslint-disable id-length -->
130130

131131
```javascript
132-
var ndarray2array = require( '@stdlib/ndarray/to-array' );
133132
var ndarray = require( '@stdlib/ndarray/base/ctor' );
134133
var base = require( '@stdlib/stats/base/ndarray/cumax' );
135134
var getDType = require( '@stdlib/ndarray/dtype' );

base/unary-strided1d-dispatch/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ By default, the method returns an ndarray having a data type determined by the o
128128

129129
```javascript
130130
var ndarray = require( '@stdlib/ndarray/base/ctor' );
131-
var ndarray2array = require( '@stdlib/ndarray/to-array' );
132131
var base = require( '@stdlib/stats/base/ndarray/cumax' );
133132
var getDType = require( '@stdlib/ndarray/dtype' );
134133

spread-dimensions/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ var spreadDimensions = require( '@stdlib/ndarray/spread-dimensions' );
4545
Returns a read-only view of an input [ndarray][@stdlib/ndarray/ctor] where the dimensions of the input [ndarray][@stdlib/ndarray/ctor] are expanded to a specified dimensionality by spreading dimensions to specified dimension indices and inserting dimensions of size one for the remaining dimensions.
4646

4747
```javascript
48-
var ndarray2array = require( '@stdlib/ndarray/to-array' );
4948
var array = require( '@stdlib/ndarray/array' );
5049

5150
// Create a 2x2 ndarray:

0 commit comments

Comments
 (0)