Skip to content

Commit aa18a35

Browse files
committed
Auto-generated commit
1 parent a62a732 commit aa18a35

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 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-11-10)
7+
## Unreleased (2025-11-11)
88

99
<section class="features">
1010

@@ -624,6 +624,8 @@ A total of 32 issues were closed in this release:
624624

625625
<details>
626626

627+
- [`9e78d0f`](https://github.com/stdlib-js/stdlib/commit/9e78d0f090816b652f837318212b91117f5cbd9a) - **docs:** fix typo _(by Philipp Burckhardt)_
628+
- [`12eb3ae`](https://github.com/stdlib-js/stdlib/commit/12eb3aee1baf1aa53cea76e8149c59d8c702b0b2) - **test:** add missing parentheses to descriptions _(by Philipp Burckhardt)_
627629
- [`ce97f8e`](https://github.com/stdlib-js/stdlib/commit/ce97f8e6b4c85870b9b983d930820c98de7b3c2b) - **chore:** fix C lint errors [(#8486)](https://github.com/stdlib-js/stdlib/pull/8486) _(by Geo Daoyu, Athan Reines)_
628630
- [`5f5bb2d`](https://github.com/stdlib-js/stdlib/commit/5f5bb2d4277a24000b57fb07bc28d821500cd7e8) - **docs:** update namespace table of contents [(#8425)](https://github.com/stdlib-js/stdlib/pull/8425) _(by stdlib-bot, Athan Reines)_
629631
- [`97fb507`](https://github.com/stdlib-js/stdlib/commit/97fb507addda8bf32be3a3f376d387e528672149) - **fix:** handle mostly safe casts and refactor loop generation _(by Athan Reines)_

base/dtype-chars/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var out = dtypeChars();
4949
// e.g., returns [ 'r', 'j', 'c', 'z', ... ]
5050
```
5151

52-
When not provided a data type "kind", the function returns an array containing the single letter character abbreviations for all support ndarray [data types][@stdlib/ndarray/dtypes]. To return the subset of data type single letter character abbreviations belonging to a specified data type kind, provide a `kind` argument.
52+
When not provided a data type "kind", the function returns an array containing the single letter character abbreviations for all supported ndarray [data types][@stdlib/ndarray/dtypes]. To return the subset of data type single letter character abbreviations belonging to a specified data type kind, provide a `kind` argument.
5353

5454
```javascript
5555
var out = dtypeChars( 'floating_point' );

base/dtype-chars/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ tape( 'the function supports returning a list of floating-point ndarray data typ
189189
t.end();
190190
});
191191

192-
tape( 'the function supports returning a list of floating-point ndarray data type single letter character abbreviations (including "generic"', function test( t ) {
192+
tape( 'the function supports returning a list of floating-point ndarray data type single letter character abbreviations (including "generic")', function test( t ) {
193193
var expected;
194194
var actual;
195195

base/dtype-strings/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ tape( 'the function supports returning a list of floating-point ndarray data typ
189189
t.end();
190190
});
191191

192-
tape( 'the function supports returning a list of floating-point ndarray data type strings (including "generic"', function test( t ) {
192+
tape( 'the function supports returning a list of floating-point ndarray data type strings (including "generic")', function test( t ) {
193193
var expected;
194194
var actual;
195195

dtypes/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ tape( 'the function supports returning a list of floating-point ndarray data typ
214214
t.end();
215215
});
216216

217-
tape( 'the function supports returning a list of floating-point ndarray data types (including "generic"', function test( t ) {
217+
tape( 'the function supports returning a list of floating-point ndarray data types (including "generic")', function test( t ) {
218218
var expected;
219219
var actual;
220220

0 commit comments

Comments
 (0)