Skip to content

Commit b767c9e

Browse files
committed
Auto-generated commit
1 parent c083ef2 commit b767c9e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,9 @@ A total of 24 issues were closed in this release:
517517

518518
<details>
519519

520+
- [`7ff8051`](https://github.com/stdlib-js/stdlib/commit/7ff805189d4e18714abb7ad430e409bae2db442b) - **docs:** fix comment _(by Athan Reines)_
521+
- [`29c6ea7`](https://github.com/stdlib-js/stdlib/commit/29c6ea7cc602a60ec0351b12dad6508f84a822ff) - **docs:** fix comment _(by Athan Reines)_
522+
- [`c8cc121`](https://github.com/stdlib-js/stdlib/commit/c8cc12198846d498a7999e0c0622fa4721f66e0d) - **docs:** fix comment _(by Athan Reines)_
520523
- [`17e89e8`](https://github.com/stdlib-js/stdlib/commit/17e89e85928ef1e38ad554975c62ea96c15c6c04) - **feat:** generate loops for mostly safe casts _(by Athan Reines)_
521524
- [`dcfeda4`](https://github.com/stdlib-js/stdlib/commit/dcfeda41070dee08be0ddd2be3d23d82b1658f4b) - **test:** fix broken tests due to upstream changes _(by Athan Reines)_
522525
- [`1829650`](https://github.com/stdlib-js/stdlib/commit/18296504e866597848ac12d2bd609ab8077372d2) - **test:** fix broken tests due to upstream changes _(by Athan Reines)_

base/nullary-strided1d-dispatch/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ import NullaryStrided1dDispatch = require( './index' );
9494
nullary( ( x: number, y: number ): number => x + y, [ dtypes ], dtypes, {} ); // $ExpectError
9595
}
9696

97-
// The compiler throws an error if the function is provided a second argument which is not a a list of data type lists...
97+
// The compiler throws an error if the function is provided a second argument which is not a list of data type lists...
9898
{
9999
const dtypes: Array<DataType> = [ 'float64', 'float32', 'generic' ];
100100
const table = {

base/unary-reduce-strided1d-dispatch-by/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function clbk( v: number ): number {
8787
unary( ( x: number, y: number ): number => x + y, [ dtypes ], dtypes, policies ); // $ExpectError
8888
}
8989

90-
// The compiler throws an error if the function is provided a second argument which is not a a list of data type lists...
90+
// The compiler throws an error if the function is provided a second argument which is not a list of data type lists...
9191
{
9292
const dtypes: Array<DataType> = [ 'float64', 'float32' ];
9393
const table = {

base/unary-reduce-strided1d-dispatch/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ import UnaryStrided1dDispatch = require( './index' );
7777
unary( ( x: number, y: number ): number => x + y, [ dtypes ], dtypes, policies ); // $ExpectError
7878
}
7979

80-
// The compiler throws an error if the function is provided a second argument which is not a a list of data type lists...
80+
// The compiler throws an error if the function is provided a second argument which is not a list of data type lists...
8181
{
8282
const dtypes: Array<DataType> = [ 'float64', 'float32' ];
8383
const table = {

0 commit comments

Comments
 (0)