Skip to content

Commit bc8b6bb

Browse files
committed
Auto-generated commit
1 parent a092619 commit bc8b6bb

File tree

7 files changed

+150
-143
lines changed

7 files changed

+150
-143
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,10 @@ A total of 32 issues were closed in this release:
638638

639639
<details>
640640

641+
- [`037800a`](https://github.com/stdlib-js/stdlib/commit/037800a4294184df000d19e2ded62351016dce42) - **test:** use assertion utility and update example _(by Athan Reines)_
642+
- [`6d0ad29`](https://github.com/stdlib-js/stdlib/commit/6d0ad290fdb48864de0c09c5dd55c9eff7a22586) - **test:** use assertion utility and update example _(by Athan Reines)_
643+
- [`e091542`](https://github.com/stdlib-js/stdlib/commit/e091542b1f458f3dfb68bdae82314930575404c7) - **docs:** update example _(by Athan Reines)_
644+
- [`7378ba6`](https://github.com/stdlib-js/stdlib/commit/7378ba6e3b77e50e90d4ea34cfecc263fdf8e65c) - **test:** use assertion utility _(by Athan Reines)_
641645
- [`ba6c568`](https://github.com/stdlib-js/stdlib/commit/ba6c568030bf47a3b8c8b2297e5d87fc093ed93b) - **feat:** add `toReversed` to namespace _(by Athan Reines)_
642646
- [`853fe75`](https://github.com/stdlib-js/stdlib/commit/853fe75bce7b8374fd7545c493cc89391b20636f) - **feat:** add `shift` to namespace _(by Athan Reines)_
643647
- [`e7715c7`](https://github.com/stdlib-js/stdlib/commit/e7715c7f1f74f3734ba9b7d5d367ea02b415b66e) - **feat:** add `reverseDimension` to namespace _(by Athan Reines)_

flatten-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ var opts = {
148148
var y = flattenBy( x, opts, scale );
149149
// returns <ndarray>
150150

151-
var dt = dtype( y );
151+
var dt = String( dtype( y ) );
152152
// returns 'float32'
153153

154154
var arr = ndarray2array( y );

flatten-by/test/test.js

Lines changed: 44 additions & 43 deletions
Large diffs are not rendered by default.

flatten-from/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ var y = flattenFrom( x, 0, {
106106
});
107107
// returns <ndarray>
108108

109-
var dt = dtype( y );
109+
var dt = String( dtype( y ) );
110110
// returns 'float32'
111111

112112
var arr = ndarray2array( y );

flatten-from/test/test.js

Lines changed: 59 additions & 58 deletions
Large diffs are not rendered by default.

flatten/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var y = flatten( x, {
125125
});
126126
// returns <ndarray>
127127

128-
var dt = dtype( y );
128+
var dt = String( dtype( y ) );
129129
// returns 'float32'
130130

131131
var arr = ndarray2array( y );

flatten/test/test.js

Lines changed: 40 additions & 39 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)