File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
lib/node_modules/@stdlib/ndarray/iter Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments