Skip to content

Commit e57c2f3

Browse files
committed
chore: clean-up
1 parent d44a1de commit e57c2f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/zdotc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ var Complex128 = require( '@stdlib/complex/float32/ctor' );
135135
var zdotc = require( '@stdlib/blas/base/zdotc' );
136136

137137
function rand() {
138-
return new Complex128( discreteUniform( 0, 10 ), discreteUniform( 1, 5 ) );
138+
return new Complex128( discreteUniform( 0, 10 ), discreteUniform( 1, 5 ) );
139139
}
140140

141141
var x = filledarrayBy( 10, 'complex128', rand );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
> var y0 = new {{alias:@stdlib/array/complex64}}( [ 0.0, 0.0, 6.0, -6.0, -9.0, 5.0, 7.0, -6.0 ] );
5252
> var x1 = new {{alias:@stdlib/array/complex64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
5353
> var y1 = new {{alias:@stdlib/array/complex64}}( y0.buffer, y0.BYTES_PER_ELEMENT*2 );
54-
> {{alias}}( 2, x1, -2, y1, 1 );
54+
> {{alias}}( 2, x1, -2, y1, 1 )
5555
<Complex128>[ 54.0, -80.0 ]
5656

5757

0 commit comments

Comments
 (0)