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 75d8c3e commit 732ca7eCopy full SHA for 732ca7e
lib/node_modules/@stdlib/blas/base/zher2/docs/types/test.ts
@@ -249,7 +249,7 @@ import zher2 = require( './index' );
249
zher2.ndarray( undefined, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
250
zher2.ndarray( [], 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
251
zher2.ndarray( {}, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
252
- zher2.ndarray.ndarray( 'row-major', ( x: number ): number => x, 10, alpha, x, 1, 0, y, 1, 0, A, 3, 1, 0 ); // $ExpectError
+ zher2.ndarray( 'row-major', ( 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