Skip to content

Commit c19d974

Browse files
committed
Auto-generated commit
1 parent 327153b commit c19d974

7 files changed

Lines changed: 10 additions & 8 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 (2025-08-15)
7+
## Unreleased (2025-08-22)
88

99
<section class="features">
1010

@@ -496,6 +496,7 @@ A total of 23 issues were closed in this release:
496496

497497
<details>
498498

499+
- [`8a6dbd7`](https://github.com/stdlib-js/stdlib/commit/8a6dbd7bf692bcd9ce166a7370eda0a7410da3b0) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_
499500
- [`73e569f`](https://github.com/stdlib-js/stdlib/commit/73e569fd71650dbd2c18ce3fec9c373767fcb027) - **fix:** address assignment bug _(by Athan Reines)_
500501
- [`b00978b`](https://github.com/stdlib-js/stdlib/commit/b00978b67f6f32f7f6a343f29685ff4da30bd89d) - **fix:** address assignment bug _(by Athan Reines)_
501502
- [`5efa5d7`](https://github.com/stdlib-js/stdlib/commit/5efa5d79b4e9348e431e35cbd2657982a78455cc) - **fix:** address assignment bug _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ Sivam Das <100067002+Sivam2313@users.noreply.github.com>
189189
Snehil Shah <snehilshah.989@gmail.com>
190190
Soumajit Chatterjee <121816890+soumajit23@users.noreply.github.com>
191191
Spandan Barve <contact@marsian.dev>
192+
Srinivas Batthula <srinivasbatthula05.official@gmail.com>
192193
Stephannie Jiménez Gacha <steff456@hotmail.com>
193194
Suhaib Ilahi <suhaib.elahi87@gmail.com>
194195
Suraj Kumar <125961509+kumarsuraj212003@users.noreply.github.com>

base/dtypes2signatures/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* 'float32', 'float32'
3232
* ];
3333
*
34-
* var sigs = dtypes2signatures( dtypes, 2, 0 );
34+
* var sigs = dtypes2signatures( dtypes, 1, 1 );
3535
* // returns [ '(float64) => (float64)', '(float32) => (float32)' ]
3636
*/
3737

base/from-scalar-like/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* // returns []
3838
*
3939
* var dt = y.dtype;
40-
* // returns 'float64'
40+
* // returns 'float32'
4141
*
4242
* var v = y.get();
4343
* // returns 1.0

base/maybe-broadcast-arrays/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
* var zeros = require( '@stdlib/ndarray/zeros' );
2929
* var maybeBroadcastArrays = require( '@stdlib/ndarray/base/maybe-broadcast-arrays' );
3030
*
31-
* var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );
31+
* var x1 = array( [ [ 1, 2 ], [ 3, 4 ] ] );
3232
* // returns <ndarray>
3333
*
34-
* var shx = x.shape;
34+
* var shx = x1.shape;
3535
* // returns [ 2, 2 ]
3636
*
3737
* var y1 = zeros( [ 3, 2, 2 ] );

iter/values/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
3131
* // returns <ndarray>
3232
*
33-
* var iter = nditerValues( x.shape );
33+
* var iter = nditerValues( x );
3434
*
3535
* var v = iter.next().value;
3636
* // returns 1

maybe-broadcast-arrays/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
* var zeros = require( '@stdlib/ndarray/zeros' );
2929
* var maybeBroadcastArrays = require( '@stdlib/ndarray/maybe-broadcast-arrays' );
3030
*
31-
* var x = array( [ [ 1, 2 ], [ 3, 4 ] ] );
31+
* var x1 = array( [ [ 1, 2 ], [ 3, 4 ] ] );
3232
* // returns <ndarray>
3333
*
34-
* var shx = x.shape;
34+
* var shx = x1.shape;
3535
* // returns [ 2, 2 ]
3636
*
3737
* var y1 = zeros( [ 3, 2, 2 ] );

0 commit comments

Comments
 (0)