We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a1727 commit b968a88Copy full SHA for b968a88
lib/node_modules/@stdlib/blas/base/cher2/docs/types/test.ts
@@ -249,7 +249,7 @@ import cher2 = require( './index' );
249
cher2.ndarray( undefined, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
250
cher2.ndarray( [], 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
251
cher2.ndarray( {}, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
252
- cher2.ndarray( 'row-major', ( x: number ): number => x, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
+ cher2.ndarray( ( x: number ): number => x, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
253
}
254
255
// The compiler throws an error if the function is provided a second argument which is not a number...
0 commit comments