Skip to content

Commit 51f9c4b

Browse files
committed
Auto-generated commit
1 parent b767c9e commit 51f9c4b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

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

518518
<details>
519519

520+
- [`725ba50`](https://github.com/stdlib-js/stdlib/commit/725ba500a8ac24922b4a764acd65a035a4993032) - **docs:** fix comment _(by Athan Reines)_
521+
- [`b937bc4`](https://github.com/stdlib-js/stdlib/commit/b937bc453930ccb515898c2e2040c65f9f9ae2ad) - **docs:** fix comment _(by Athan Reines)_
520522
- [`7ff8051`](https://github.com/stdlib-js/stdlib/commit/7ff805189d4e18714abb7ad430e409bae2db442b) - **docs:** fix comment _(by Athan Reines)_
521523
- [`29c6ea7`](https://github.com/stdlib-js/stdlib/commit/29c6ea7cc602a60ec0351b12dad6508f84a822ff) - **docs:** fix comment _(by Athan Reines)_
522524
- [`c8cc121`](https://github.com/stdlib-js/stdlib/commit/c8cc12198846d498a7999e0c0622fa4721f66e0d) - **docs:** fix comment _(by Athan Reines)_

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function clbk( v: number ): number {
153153
unary<number, number>( table, [ dtypes ], ( x: number ): number => x, policies ); // $ExpectError
154154
}
155155

156-
// The compiler throws an error if the function is provided a fourth argument which is invalid policies object...
156+
// The compiler throws an error if the function is provided a fourth argument which is an invalid policies object...
157157
{
158158
const dtypes: Array<DataType> = [ 'float64', 'float32' ];
159159
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
@@ -143,7 +143,7 @@ import UnaryStrided1dDispatch = require( './index' );
143143
unary<number, number>( table, [ dtypes ], ( x: number ): number => x, policies ); // $ExpectError
144144
}
145145

146-
// The compiler throws an error if the function is provided a fourth argument which is invalid policies object...
146+
// The compiler throws an error if the function is provided a fourth argument which is an invalid policies object...
147147
{
148148
const dtypes: Array<DataType> = [ 'float64', 'float32' ];
149149
const table = {

0 commit comments

Comments
 (0)