Skip to content

Commit aa272e6

Browse files
committed
Auto-generated commit
1 parent 6b67a1a commit aa272e6

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

@@ -38,6 +38,7 @@
3838

3939
<details>
4040

41+
- [`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)_
4142
- [`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)_
4243
- [`cc06b5c`](https://github.com/stdlib-js/stdlib/commit/cc06b5c8c67a1c8d1022920273535b29e5abf550) - **fix:** add missing generic parameter _(by Athan Reines)_
4344
- [`9dd3673`](https://github.com/stdlib-js/stdlib/commit/9dd3673c96b4b77d9cbc377bf2c551636b8c4dff) - **docs:** add `repl.txt` to `array/complex64` [(#2275)](https://github.com/stdlib-js/stdlib/pull/2275) _(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
@@ -900,6 +900,7 @@ setReadOnly( Complex64Array.prototype, 'every', function every( predicate, thisA
900900
* @throws {TypeError} first argument must be a complex number
901901
* @throws {TypeError} second argument must be an integer
902902
* @throws {TypeError} third argument must be an integer
903+
* @returns {Complex64Array} modified array
903904
*
904905
* @example
905906
* var realf = require( '@stdlib/complex-realf' );
@@ -918,7 +919,7 @@ setReadOnly( Complex64Array.prototype, 'every', function every( predicate, thisA
918919
* var im = imagf( z );
919920
* // returns 1.0
920921
*
921-
* z = arr.get( 1 );
922+
* z = arr.get( 2 );
922923
* // returns <Complex64>
923924
*
924925
* re = realf( z );

0 commit comments

Comments
 (0)