Skip to content

Commit 8259038

Browse files
committed
Auto-generated commit
1 parent 5bb106e commit 8259038

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@ A total of 49 issues were closed in this release:
906906

907907
<details>
908908

909+
- [`dabdc73`](https://github.com/stdlib-js/stdlib/commit/dabdc73cf7df57d6840f5576b801755cb84497f0) - **docs:** update examples _(by Athan Reines)_
909910
- [`7c54f16`](https://github.com/stdlib-js/stdlib/commit/7c54f16e5ad8e3bb02fef147a07faf04e4d56e40) - **feat:** add `toRot180` and `toRotl90` to namespace _(by Athan Reines)_
910911
- [`e34b36c`](https://github.com/stdlib-js/stdlib/commit/e34b36cdedc2287b3eff185f30986cb65bfd6ca5) - **docs:** update namespace table of contents [(#11855)](https://github.com/stdlib-js/stdlib/pull/11855) _(by stdlib-bot, Philipp Burckhardt)_
911912
- [`6b16c0b`](https://github.com/stdlib-js/stdlib/commit/6b16c0bec485b03bf84f577434163d707e2120a9) - **docs:** update related packages sections [(#11853)](https://github.com/stdlib-js/stdlib/pull/11853) _(by stdlib-bot)_

vector/ctor/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ var lens = discreteUniform( 10, 5, 15, {
255255
'dtype': 'int32'
256256
});
257257

258-
// Resolve a list of supported ndarray real-valued data types:
259-
var dts = dtypes( 'real_and_generic' );
258+
// Resolve a list of supported ndarray integer-valued data types:
259+
var dts = dtypes( 'integer_and_generic' );
260260

261261
// Create length-dtype pairs:
262262
var pairs = cartesianProduct( lens, dts );

vector/ctor/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ var lens = discreteUniform( 10, 5, 15, {
3131
'dtype': 'int32'
3232
});
3333

34-
// Resolve a list of supported ndarray real-valued data types:
35-
var dts = dtypes( 'real_and_generic' );
34+
// Resolve a list of supported ndarray integer-valued data types:
35+
var dts = dtypes( 'integer_and_generic' );
3636

3737
// Create length-dtype pairs:
3838
var pairs = cartesianProduct( lens, dts );

0 commit comments

Comments
 (0)