Skip to content

Commit 0ac6b87

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 3254c1c commit 0ac6b87

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/cher/docs/types

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/cher/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ import cher = require( './index' );
189189
cher.ndarray( undefined, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
190190
cher.ndarray( [], 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
191191
cher.ndarray( {}, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
192-
cher.ndarray( 'row-major', ( x: number ): number => x, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
192+
cher.ndarray( ( x: number ): number => x, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
193193
}
194194

195195
// The compiler throws an error if the function is provided a second argument which is not a number...

0 commit comments

Comments
 (0)