Skip to content

Commit 0baf6ee

Browse files
committed
chore: clean-up
1 parent e11fbab commit 0baf6ee

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/zdotc/docs

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
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+
> z = {{alias}}( 2, x1, -2, y1, 1 )
5555
<Complex128>[ 54.0, -80.0 ]
5656

5757

5858
{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )
59-
Computes the dot product of two double-precision complex vectors
60-
using alternative indexing semantics.
59+
Computes the dot product of two double-precision complex vectors using
60+
alternative indexing semantics.
6161

6262
While typed array views mandate a view offset based on the underlying
6363
buffer, the offset parameters support indexing based on a starting index.

0 commit comments

Comments
 (0)