Skip to content

Commit 0e88d9d

Browse files
committed
fix line breaks
1 parent dc999a8 commit 0e88d9d

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

  • lib/node_modules/@stdlib/blas/base/ndarray/zcopy/docs

lib/node_modules/@stdlib/blas/base/ndarray/zcopy/docs/repl.txt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
floating-point ndarray `x` into a one-dimensional double-precision
55
complex floating-point ndarray `y`.
66

7-
If provided an empty input ndarray, the function returns the output
8-
ndarray unchanged.
7+
If provided an empty input ndarray, the function returns the output ndarray
8+
unchanged.
99

1010
Parameters
1111
----------
1212
arrays: ArrayLikeObject<ndarray>
13-
Array-like object containing an input ndarray and an output
14-
ndarray.
13+
Array-like object containing an input ndarray and an output ndarray.
1514

1615
Returns
1716
-------
@@ -20,8 +19,8 @@
2019

2120
Examples
2221
--------
23-
> var xbuf = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0 ] );
24-
> var ybuf = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0 ] );
22+
> var xbuf = new {{alias:@stdlib/array/complex128}}( [ 1.0, 2.0, 3.0, 4.0 ] );
23+
> var ybuf = new {{alias:@stdlib/array/complex128}}( [ 0.0, 0.0, 0.0, 0.0 ] );
2524
> var dt = 'complex128';
2625
> var sh = [ xbuf.length ];
2726
> var st = [ 1 ];
@@ -32,7 +31,7 @@
3231

3332
> {{alias}}( [ x, y ] );
3433
> y
35-
<ndarray>[ <Complex128>[ 1.0, 2.0 ] ]
34+
<ndarray>[ <Complex128>[ 1.0, 2.0 ], <Complex128>[ 3.0, 4.0 ] ]
3635

3736
See Also
3837
--------

0 commit comments

Comments
 (0)