Skip to content

Commit fb1658c

Browse files
committed
Auto-generated commit
1 parent bec565f commit fb1658c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

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

265265
<details>
266266

267+
- [`3186ff6`](https://github.com/stdlib-js/stdlib/commit/3186ff670bcc66153a58b94111f5688fa59170e7) - **docs:** fix alias _(by Athan Reines)_
267268
- [`a4557ba`](https://github.com/stdlib-js/stdlib/commit/a4557ba86aebbc0535f0989f59ba3461ad6b1d89) - **refactor:** perform explicit dtype validation _(by Athan Reines)_
268269
- [`bfc9322`](https://github.com/stdlib-js/stdlib/commit/bfc9322020792df4f47ea649d6fbed509284f6bd) - **refactor:** perform explicit dtype validation _(by Athan Reines)_
269270
- [`b85a1da`](https://github.com/stdlib-js/stdlib/commit/b85a1da40b6ea52d966f7294933908c5d4c839d9) - **refactor:** perform expliict dtype argument validation _(by Athan Reines)_

nans/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
var dtypes = require( './../../typed-float-dtypes' );
22-
var ones = require( './../lib' );
22+
var nans = require( './../lib' );
2323

2424
// Get a list of array data types:
2525
var dt = dtypes();
@@ -28,6 +28,6 @@ var dt = dtypes();
2828
var arr;
2929
var i;
3030
for ( i = 0; i < dt.length; i++ ) {
31-
arr = ones( 4, dt[ i ] );
31+
arr = nans( 4, dt[ i ] );
3232
console.log( arr );
3333
}

0 commit comments

Comments
 (0)