File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -485,6 +485,7 @@ A total of 46 issues were closed in this release:
485485
486486<details >
487487
488+ - [ ` 57ef247 ` ] ( https://github.com/stdlib-js/stdlib/commit/57ef247aa2a78d934abb36b6ea9994371369db37 ) - ** docs:** fix incorrect require path for ` Complex128Array ` _ (by Karan Anand)_
488489- [ ` 0d96bfb ` ] ( https://github.com/stdlib-js/stdlib/commit/0d96bfb9ad7789f5a4198bdd15c82c5236410357 ) - ** chore:** remove redundant include statement _ (by Karan Anand)_
489490- [ ` ba76851 ` ] ( https://github.com/stdlib-js/stdlib/commit/ba76851dd8983a3cd3974d06fc7af42c16e81a7f ) - ** docs:** replace manual ` for ` loop in examples _ (by Karan Anand)_
490491- [ ` ed88389 ` ] ( https://github.com/stdlib-js/stdlib/commit/ed88389cdb8cdfb939e70e55d9167d8dc3984121 ) - ** fix:** use correct type emulation _ (by Karan Anand)_
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ var im = imag( v );
7777<!-- eslint no-undef: "error" -->
7878
7979``` javascript
80- var Complex128Array = require ( ' @stdlib/array/complex64 ' );
80+ var Complex128Array = require ( ' @stdlib/array/complex128 ' );
8181var uniform = require ( ' @stdlib/random/array/uniform' );
8282var logEachMap = require ( ' @stdlib/console/log-each-map' );
8383var cinv = require ( ' @stdlib/math/base/special/cinv' );
Original file line number Diff line number Diff line change 1818
1919'use strict' ;
2020
21- var Complex128Array = require ( '@stdlib/array/complex64 ' ) ;
21+ var Complex128Array = require ( '@stdlib/array/complex128 ' ) ;
2222var uniform = require ( '@stdlib/random/array/uniform' ) ;
2323var logEachMap = require ( '@stdlib/console/log-each-map' ) ;
2424var cinv = require ( './../lib' ) ;
You can’t perform that action at this time.
0 commit comments