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 7f6de04 commit 6558cc3Copy full SHA for 6558cc3
lib/node_modules/@stdlib/blas/base/ssymv/docs/types/test.ts
@@ -27,7 +27,7 @@ import ssymv = require( './index' );
27
const y = new Float32Array( 5 );
28
const A = new Float32Array( 25 );
29
30
- ssymv( 'row-major', 'upper', 5, 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectType Float32Array
+ ssymv( 'row-major', 'upper', 5, 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectType Float32Array
31
}
32
33
// The compiler throws an error if the function is provided a first argument which is not a string...
0 commit comments