Skip to content

Commit 01611a6

Browse files
authored
fix: lint errors
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 3bb1c0c commit 01611a6

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/sgbmv/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
// Using typed array views:
8585
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, 1.0, 1.0, 1.0 ] );
8686
> var y0 = new {{alias:@stdlib/array/float32}}( [ 0.0, 0.0, 0.0, 0.0] );
87-
> A = new {{alias:@stdlib/array/float32}}( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 0.0 ] );
87+
> A = new {{alias:@stdlib/array/float32}}([ 0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,0.0 ]);
8888
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
8989
> var y1 = new {{alias:@stdlib/array/float32}}( y0.buffer, y0.BYTES_PER_ELEMENT*1 );
9090
> {{alias}}( ord, trans, 3, 3, 1, 1, 1.0, A, 3, x1, 1, 1.0, y1, 1 );

0 commit comments

Comments
 (0)