File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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)_
Original file line number Diff line number Diff line change 1919'use strict' ;
2020
2121var dtypes = require ( './../../typed-float-dtypes' ) ;
22- var ones = require ( './../lib' ) ;
22+ var nans = require ( './../lib' ) ;
2323
2424// Get a list of array data types:
2525var dt = dtypes ( ) ;
@@ -28,6 +28,6 @@ var dt = dtypes();
2828var arr ;
2929var i ;
3030for ( i = 0 ; i < dt . length ; i ++ ) {
31- arr = ones ( 4 , dt [ i ] ) ;
31+ arr = nans ( 4 , dt [ i ] ) ;
3232 console . log ( arr ) ;
3333}
You can’t perform that action at this time.
0 commit comments