Skip to content

Commit ab4fac5

Browse files
committed
Auto-generated commit
1 parent 8e461ff commit ab4fac5

3 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
@@ -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)_

base/special/cinv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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' );
8181
var uniform = require( '@stdlib/random/array/uniform' );
8282
var logEachMap = require( '@stdlib/console/log-each-map' );
8383
var cinv = require( '@stdlib/math/base/special/cinv' );

base/special/cinv/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var Complex128Array = require( '@stdlib/array/complex64' );
21+
var Complex128Array = require( '@stdlib/array/complex128' );
2222
var uniform = require( '@stdlib/random/array/uniform' );
2323
var logEachMap = require( '@stdlib/console/log-each-map' );
2424
var cinv = require( './../lib' );

0 commit comments

Comments
 (0)