Skip to content

Commit eddf7e4

Browse files
committed
Auto-generated commit
1 parent 5c17644 commit eddf7e4

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<details>
1414

15+
- [`17fd10b`](https://github.com/stdlib-js/stdlib/commit/17fd10bc90d3cb7469ad3c2e4713363b7097eb42) - **docs:** update `blas/ext/base/ndarray` TypeScript declarations [(#10310)](https://github.com/stdlib-js/stdlib/pull/10310) _(by stdlib-bot)_
1516
- [`9df57d4`](https://github.com/stdlib-js/stdlib/commit/9df57d4d7a7383c849ad00e3cc4335888b6f2197) - **docs:** improve doctests for ndarray instances in `ndarray/gcusum` [(#10250)](https://github.com/stdlib-js/stdlib/pull/10250) _(by AyushiJain18270)_
1617

1718
</details>

docs/types/index.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@ interface Namespace {
246246
* @returns output ndarray
247247
*
248248
* @example
249-
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
250249
* var scalar2ndarray = require( '@stdlib/ndarray-base-from-scalar' );
251250
* var ndarray = require( '@stdlib/ndarray-base-ctor' );
252251
*
@@ -259,13 +258,10 @@ interface Namespace {
259258
* var initial = scalar2ndarray( 0.0, 'generic', 'row-major' );
260259
*
261260
* var v = ns.gcusum( [ x, y, initial ] );
262-
* // returns <ndarray>
261+
* // returns <ndarray>[ 1.0, 4.0, 8.0, 10.0 ]
263262
*
264263
* var bool = ( v === y );
265264
* // returns true
266-
*
267-
* var arr = ndarray2array( v );
268-
* // returns [ 1.0, 4.0, 8.0, 10.0 ]
269265
*/
270266
gcusum: typeof gcusum;
271267

0 commit comments

Comments
 (0)