Skip to content

Commit 9b1621b

Browse files
committed
Auto-generated commit
1 parent 501212e commit 9b1621b

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,7 @@ A total of 45 issues were closed in this release:
817817

818818
<details>
819819

820+
- [`3bf34ec`](https://github.com/stdlib-js/stdlib/commit/3bf34ec6df7f894f7cbee125eb3f655ebb2d6a4e) - **chore:** fix typos, grammar, and minor issues across multiple packages [(#11167)](https://github.com/stdlib-js/stdlib/pull/11167) _(by Philipp Burckhardt)_
820821
- [`28d3e7d`](https://github.com/stdlib-js/stdlib/commit/28d3e7d6b05b312ebf14896cb0d8593902e443cb) - **feat:** update `ndarray/base` TypeScript declarations [(#11166)](https://github.com/stdlib-js/stdlib/pull/11166) _(by stdlib-bot)_
821822
- [`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)_
822823
- [`364e294`](https://github.com/stdlib-js/stdlib/commit/364e294fbd4ebd149d86b8f7996da4b00b6c6b3b) - **feat:** add `nulls` to namespace _(by Athan Reines)_

base/copy/docs/types/test.ts

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

46-
// The compiler throws an error if the function is provided a first argument is not an ndarray...
46+
// The compiler throws an error if the function is provided a first argument which is not an ndarray...
4747
{
4848
copy( '10' ); // $ExpectError
4949
copy( 10 ); // $ExpectError

base/empty-like/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import emptyLike = require( './index' );
4343
emptyLike( zeros( 'generic', sh, ord ) ); // $ExpectType typedndarray<number>
4444
}
4545

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

base/nans/test/test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ tape( 'the function throws an error if provided an unrecognized/unsupported data
9292
'Float64',
9393
'Float32',
9494
'FLOAT64',
95-
'FLOAT32'
95+
'FLOAT32',
96+
'GENERIC'
9697
];
9798

9899
for ( i = 0; i < values.length; i++ ) {

0 commit comments

Comments
 (0)