Skip to content

Commit ba9ef60

Browse files
committed
docs: fix grammar typo
1 parent 5ab2e80 commit ba9ef60

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/ndarray/iter/columns/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import nditerColumns = require( './index' );
4949
nditerColumns( ( x: number ): number => x, {} ); // $ExpectError
5050
}
5151

52-
// The compiler throws an error if the function is provided a second argument which is not a an object...
52+
// The compiler throws an error if the function is provided a second argument which is not an object...
5353
{
5454
nditerColumns( zeros( [ 2, 2 ] ), 'abc' ); // $ExpectError
5555
nditerColumns( zeros( [ 2, 2 ] ), 123 ); // $ExpectError

lib/node_modules/@stdlib/ndarray/iter/entries/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import nditerEntries = require( './index' );
5151
nditerEntries( ( x: number ): number => x, {} ); // $ExpectError
5252
}
5353

54-
// The compiler throws an error if the function is provided a second argument which is not a an object...
54+
// The compiler throws an error if the function is provided a second argument which is not an object...
5555
{
5656
const x = zeros( [ 2, 2 ] );
5757

lib/node_modules/@stdlib/ndarray/iter/indices/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import nditerIndices = require( './index' );
5151
nditerIndices( ( x: number ): number => x, {} ); // $ExpectError
5252
}
5353

54-
// The compiler throws an error if the function is provided a second argument which is not a an object...
54+
// The compiler throws an error if the function is provided a second argument which is not an object...
5555
{
5656
const x = zeros( [ 2, 2 ] );
5757

lib/node_modules/@stdlib/ndarray/iter/matrices/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import nditerMatrices = require( './index' );
4949
nditerMatrices( ( x: number ): number => x, {} ); // $ExpectError
5050
}
5151

52-
// The compiler throws an error if the function is provided a second argument which is not a an object...
52+
// The compiler throws an error if the function is provided a second argument which is not an object...
5353
{
5454
nditerMatrices( zeros( [ 2, 2, 2 ] ), 'abc' ); // $ExpectError
5555
nditerMatrices( zeros( [ 2, 2, 2 ] ), 123 ); // $ExpectError

lib/node_modules/@stdlib/ndarray/iter/row-entries/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import nditerRowEntries = require( './index' );
5151
nditerRowEntries( ( x: number ): number => x, {} ); // $ExpectError
5252
}
5353

54-
// The compiler throws an error if the function is provided a second argument which is not a an object...
54+
// The compiler throws an error if the function is provided a second argument which is not an object...
5555
{
5656
const x = zeros( [ 2, 2, 2 ] );
5757

lib/node_modules/@stdlib/ndarray/iter/rows/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import nditerRows = require( './index' );
4949
nditerRows( ( x: number ): number => x, {} ); // $ExpectError
5050
}
5151

52-
// The compiler throws an error if the function is provided a second argument which is not a an object...
52+
// The compiler throws an error if the function is provided a second argument which is not an object...
5353
{
5454
nditerRows( zeros( [ 2, 2 ] ), 'abc' ); // $ExpectError
5555
nditerRows( zeros( [ 2, 2 ] ), 123 ); // $ExpectError

lib/node_modules/@stdlib/ndarray/iter/values/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import nditerValues = require( './index' );
5151
nditerValues( ( x: number ): number => x, {} ); // $ExpectError
5252
}
5353

54-
// The compiler throws an error if the function is provided a second argument which is not a an object...
54+
// The compiler throws an error if the function is provided a second argument which is not an object...
5555
{
5656
const x = zeros( [ 2, 2 ] );
5757

0 commit comments

Comments
 (0)