Skip to content

Commit 6558cc3

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 7f6de04 commit 6558cc3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import ssymv = require( './index' );
2727
const y = new Float32Array( 5 );
2828
const A = new Float32Array( 25 );
2929

30-
ssymv( 'row-major', 'upper', 5, 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectType Float32Array
30+
ssymv( 'row-major', 'upper', 5, 1.0, A, 10, x, 1, 1.0, y, 1 ); // $ExpectType Float32Array
3131
}
3232

3333
// The compiler throws an error if the function is provided a first argument which is not a string...

0 commit comments

Comments
 (0)