Skip to content

Commit 4b77044

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 150acca commit 4b77044

File tree

1 file changed

+0
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/zdotc/examples

1 file changed

+0
-1
lines changed

lib/node_modules/@stdlib/blas/base/zdotc/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ console.log( y.toString() );
3737
var z = zdotc( x.length, x, 1, y, 1 );
3838
console.log( z );
3939

40-
// Perform dot product of x and y using alternative indexing semantics:
4140
// Perform dot product of x and y using alternative indexing semantics:
4241
z = zdotc.ndarray( x.length, x, 1, 0, y, 1, 0 );
4342
console.log( z );

0 commit comments

Comments
 (0)