Skip to content

Commit 04c070d

Browse files
committed
Auto-generated commit
1 parent 1faccf7 commit 04c070d

2 files changed

Lines changed: 27 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,37 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-03-25)
7+
## Unreleased (2026-03-27)
8+
9+
<section class="bug-fixes">
10+
11+
### Bug Fixes
12+
13+
- [`762f410`](https://github.com/stdlib-js/stdlib/commit/762f410098b29afa3823ab1191553101db0dcead) - correct grammar in ndarray type test comments [(#11154)](https://github.com/stdlib-js/stdlib/pull/11154)
14+
15+
</section>
16+
17+
<!-- /.bug-fixes -->
18+
19+
<section class="issues">
20+
21+
### Closed Issues
22+
23+
This release closes the following issue:
24+
25+
[#11152](https://github.com/stdlib-js/stdlib/issues/11152)
26+
27+
</section>
28+
29+
<!-- /.issues -->
830

931
<section class="commits">
1032

1133
### Commits
1234

1335
<details>
1436

37+
- [`762f410`](https://github.com/stdlib-js/stdlib/commit/762f410098b29afa3823ab1191553101db0dcead) - **fix:** correct grammar in ndarray type test comments [(#11154)](https://github.com/stdlib-js/stdlib/pull/11154) _(by Matt Van Horn)_
1538
- [`f759b2b`](https://github.com/stdlib-js/stdlib/commit/f759b2b5ed4db16f35f0544fb65ed38a957f9f7b) - **refactor:** remove overloads and use generic _(by Athan Reines)_
1639
- [`f44463a`](https://github.com/stdlib-js/stdlib/commit/f44463a257a9c70c3b0baa84168bcb1f10cd438e) - **docs:** update examples and docs to accommodate dtype instances _(by Athan Reines)_
1740

@@ -25,9 +48,10 @@
2548

2649
### Contributors
2750

28-
A total of 1 person contributed to this release. Thank you to this contributor:
51+
A total of 2 people contributed to this release. Thank you to the following contributors:
2952

3053
- Athan Reines
54+
- Matt Van Horn
3155

3256
</section>
3357

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import zerosLike = require( './index' );
4141
zerosLike( zeros( 'generic', sh, ord ) ); // $ExpectType genericndarray<number>
4242
}
4343

44-
// The compiler throws an error if the function is provided a first argument is not an ndarray which has a recognized/supported data type...
44+
// The compiler throws an error if the function is provided a first argument which is not an ndarray having a recognized/supported data type...
4545
{
4646
zerosLike( '10' ); // $ExpectError
4747
zerosLike( 10 ); // $ExpectError

0 commit comments

Comments
 (0)