Skip to content

Commit 27a4560

Browse files
committed
Auto-generated commit
1 parent 35b4b3b commit 27a4560

5 files changed

Lines changed: 42 additions & 4 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-05-06)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`923db7f`](https://github.com/stdlib-js/stdlib/commit/923db7f63656e408cf390029bd7985b4e736b518) - **docs:** improve doctests for complex number instances in `array/base/accessors` [(#11970)](https://github.com/stdlib-js/stdlib/pull/11970) _(by Karan Anand)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.3">
640

741
## 0.2.3 (2026-02-08)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ console.log( 'Accessor protocol: %s', bool );
148148

149149
// Retrieve an array element:
150150
var v = obj.accessors[ 0 ]( x, 1 );
151-
// returns <Complex64>
151+
// returns <Complex64>[ 2.0, 3.0 ]
152152

153153
console.log( 'x[1] = %s', v.toString() );
154154
```

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ declare function accessors( x: Uint8ClampedArray ): Uint8cAccessorObject;
761761
* // returns [ <Function>, <Function> ]
762762
*
763763
* var v = fcns[ 0 ]( x, 1 );
764-
* // returns <Complex128>
764+
* // returns <Complex128>[ 3.0, 4.0 ]
765765
*/
766766
declare function accessors( x: Complex128Array ): Complex128AccessorObject;
767767

@@ -789,7 +789,7 @@ declare function accessors( x: Complex128Array ): Complex128AccessorObject;
789789
* // returns [ <Function>, <Function> ]
790790
*
791791
* var v = fcns[ 0 ]( x, 1 );
792-
* // returns <Complex64>
792+
* // returns <Complex64>[ 3.0, 4.0 ]
793793
*/
794794
declare function accessors( x: Complex64Array ): Complex64AccessorObject;
795795

0 commit comments

Comments
 (0)