Skip to content

Commit 97855ed

Browse files
committed
Auto-generated commit
1 parent 22cd9dd commit 97855ed

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-21)
7+
## Unreleased (2026-03-22)
88

99
<section class="features">
1010

@@ -794,6 +794,7 @@ A total of 44 issues were closed in this release:
794794

795795
<details>
796796

797+
- [`b1b1a64`](https://github.com/stdlib-js/stdlib/commit/b1b1a64876a554c2d77c9f4fbc96daa5e0d3f90e) - **docs:** update example _(by Athan Reines)_
797798
- [`0f753ef`](https://github.com/stdlib-js/stdlib/commit/0f753ef8b2aeb203c314accd37af63c551dfdfad) - **refactor:** use string interpolation _(by Athan Reines)_
798799
- [`2de635b`](https://github.com/stdlib-js/stdlib/commit/2de635b53a4366fbcc55f5c648871fd3a59f0b99) - **feat:** add `ndarray2localeString` to namespace _(by Athan Reines)_
799800
- [`ebd5886`](https://github.com/stdlib-js/stdlib/commit/ebd5886f97aef9dad8daf7df0d850882a767ca6b) - **fix:** preserve formatting of original string serialization and rename internal files _(by Athan Reines)_

base/assign/lib/0d_accessors.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@
4444
*
4545
* @example
4646
* var Complex64Array = require( '@stdlib/array/complex64' );
47-
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
48-
* var realf = require( '@stdlib/complex/float32/real' );
49-
* var imagf = require( '@stdlib/complex/float32/imag' );
5047
*
5148
* // Create data buffers:
5249
* var xbuf = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0 ] );
@@ -96,12 +93,7 @@
9693
* assign0d( x, y );
9794
*
9895
* var v = y.data.get( 0 );
99-
*
100-
* var re = realf( v );
101-
* // returns 3.0
102-
*
103-
* var im = imagf( v );
104-
* // returns 4.0
96+
* // returns <Complex64>[ 3.0, 4.0 ]
10597
*/
10698
function assign0d( x, y ) {
10799
y.accessors[ 1 ]( y.data, y.offset, x.accessors[ 0 ]( x.data, x.offset ) );

0 commit comments

Comments
 (0)