Skip to content

Commit b65ae00

Browse files
committed
Auto-generated commit
1 parent fc1b8c6 commit b65ae00

5 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 12 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-20)
7+
## Unreleased (2025-08-22)
88

99
<section class="features">
1010

@@ -27,12 +27,23 @@
2727

2828
<!-- /.bug-fixes -->
2929

30+
<section class="reverts">
31+
32+
### Reverts
33+
34+
- [`168c7c1`](https://github.com/stdlib-js/stdlib/commit/168c7c18aa58007cf9d7785b9cde69e8e7157c21) - docs: fix example code
35+
36+
</section>
37+
38+
<!-- /.reverts -->
39+
3040
<section class="commits">
3141

3242
### Commits
3343

3444
<details>
3545

46+
- [`168c7c1`](https://github.com/stdlib-js/stdlib/commit/168c7c18aa58007cf9d7785b9cde69e8e7157c21) - **revert:** docs: fix example code _(by Philipp Burckhardt)_
3647
- [`e4701e8`](https://github.com/stdlib-js/stdlib/commit/e4701e814ce9db206690ad9f2ce8b84e5a4f4e52) - **docs:** fix example code _(by Philipp Burckhardt)_
3748
- [`30b331e`](https://github.com/stdlib-js/stdlib/commit/30b331efe958bd5cab7e2bd51c45fcfa95f7c485) - **fix:** use correct return value _(by Athan Reines)_
3849
- [`25a5630`](https://github.com/stdlib-js/stdlib/commit/25a56303f451e51ede40b37a041d6bbc7f67b7e7) - **fix:** ensure support for minimal ndarray-like objects _(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>

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
*
5757
* // Create a zero-dimensional results ndarray:
5858
* var ResultsArray = structFactory( Float32Results );
59-
* var out = new ndarray( 'generic', new ResultsArray( 1 ), [], [ 0 ], 0, 'row-major' );
59+
* var out = new ndarray( Float32Results, new ResultsArray( 1 ), [], [ 0 ], 0, 'row-major' );
6060
*
6161
* // Perform a Z-test:
6262
* var v = sztest( [ x, out, alt, alpha, mu, sigma ] );

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ var strided = require( '@stdlib/stats-strided-sztest' ).ndarray;
7979
*
8080
* // Create a zero-dimensional results ndarray:
8181
* var ResultsArray = structFactory( Float32Results );
82-
* var out = new ndarray( 'generic', new ResultsArray( 1 ), [], [ 0 ], 0, 'row-major' );
82+
* var out = new ndarray( Float32Results, new ResultsArray( 1 ), [], [ 0 ], 0, 'row-major' );
8383
*
8484
* // Perform a Z-test:
8585
* var v = sztest( [ x, out, alt, alpha, mu, sigma ] );

0 commit comments

Comments
 (0)