Skip to content

Commit 46ddc29

Browse files
committed
Auto-generated commit
1 parent e5c1670 commit 46ddc29

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
999999

10001000
<details>
10011001

1002+
- [`843fd22`](https://github.com/stdlib-js/stdlib/commit/843fd22b54dd151a98bf2dd9f145147a6e7f8522) - **docs:** fix example _(by Athan Reines)_
10021003
- [`d6437f7`](https://github.com/stdlib-js/stdlib/commit/d6437f72ff5f7b0b08c531e25826651f28757143) - **docs:** fix example _(by Athan Reines)_
10031004
- [`ea0fc20`](https://github.com/stdlib-js/stdlib/commit/ea0fc20c91111d85cc32c9d38bd7ce7a70b825f8) - **chore:** fix EditorConfig lint error [(#6135)](https://github.com/stdlib-js/stdlib/pull/6135) _(by Bhavishy Agrawal, Athan Reines)_
10041005
- [`b6a6575`](https://github.com/stdlib-js/stdlib/commit/b6a657548d4e7beacc37f26e7f49c77ae3ea2f0b) - **chore:** fix EditorConfig lint errors [(#6057)](https://github.com/stdlib-js/stdlib/pull/6057) _(by Kaushikgtm)_

base/nullary/lib/7d_blocked_accessors.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ var blockSize = require( './../../../base/nullary-tiling-block-size' );
4545
* @example
4646
* var Complex64Array = require( '@stdlib/array/complex64' );
4747
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
48-
* var real = require( '@stdlib/complex/float64/real' );
49-
* var imag = require( '@stdlib/complex/float64/imag' );
48+
* var realf = require( '@stdlib/complex/float32/real' );
49+
* var imagf = require( '@stdlib/complex/float32/imag' );
5050
*
5151
* function fcn() {
5252
* return new Complex64( 10.0, -10.0 );
@@ -89,10 +89,10 @@ var blockSize = require( './../../../base/nullary-tiling-block-size' );
8989
*
9090
* var v = x.data.get( 0 );
9191
*
92-
* var re = real( v );
92+
* var re = realf( v );
9393
* // returns 10.0
9494
*
95-
* var im = imag( v );
95+
* var im = imagf( v );
9696
* // returns -10.0
9797
*/
9898
function blockednullary7d( x, fcn ) { // eslint-disable-line max-statements

0 commit comments

Comments
 (0)