Skip to content

Commit 1c2c32d

Browse files
committed
Auto-generated commit
1 parent e5344d7 commit 1c2c32d

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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 (2024-06-22)
7+
## Unreleased (2024-07-01)
88

99
<section class="features">
1010

@@ -37,6 +37,7 @@
3737

3838
<details>
3939

40+
- [`6b0e763`](https://github.com/stdlib-js/stdlib/commit/6b0e763f6763fcad684f7cc82bb3300837dad71b) - **docs:** update example and add return description [(#2489)](https://github.com/stdlib-js/stdlib/pull/2489) _(by Jaysukh Makvana)_
4041
- [`61c5609`](https://github.com/stdlib-js/stdlib/commit/61c5609ba30f3b07cd97089746a5dca25a614d94) - **docs:** fix examples in REPL documentation for complex number arrays [(#2431)](https://github.com/stdlib-js/stdlib/pull/2431) _(by Jaysukh Makvana)_
4142
- [`f53180b`](https://github.com/stdlib-js/stdlib/commit/f53180b3c431857d7c918319da97bd8e3abcb216) - **fix:** add missing parameter _(by Athan Reines)_
4243
- [`1cc1a57`](https://github.com/stdlib-js/stdlib/commit/1cc1a5727ea8a024c597d7c8bc724f027511da78) - **docs:** add `repl.txt` to `array/complex128` [(#2280)](https://github.com/stdlib-js/stdlib/pull/2280) _(by Jaysukh Makvana, Athan Reines)_

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@ setReadOnly( Complex128Array.prototype, 'every', function every( predicate, this
906906
* @throws {TypeError} first argument must be a complex number
907907
* @throws {TypeError} second argument must be an integer
908908
* @throws {TypeError} third argument must be an integer
909+
* @returns {Complex128Array} modified array
909910
*
910911
* @example
911912
* var real = require( '@stdlib/complex-real' );
@@ -924,7 +925,7 @@ setReadOnly( Complex128Array.prototype, 'every', function every( predicate, this
924925
* var im = imag( z );
925926
* // returns 1.0
926927
*
927-
* z = arr.get( 1 );
928+
* z = arr.get( 2 );
928929
* // returns <Complex128>
929930
*
930931
* re = real( z );

0 commit comments

Comments
 (0)