Skip to content

Commit 862b74c

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 9a5dc54 commit 862b74c

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var y = filledarrayBy( 10, 'complex64', rand );
3434
console.log( y.toString() );
3535

3636
// Perform dot product of x and y
37-
var z = cdotc( x.length, x, 1, 0, y, 1, 0 );
37+
var z = cdotc( x.length, x, 1, y, 1 );
3838
console.log( z );
3939

4040
z = cdotc.ndarray( x.length, x, 1, 0, y, 1, 0 );

0 commit comments

Comments
 (0)