Skip to content

Commit 0a76444

Browse files
authored
docs: fix example
Signed-off-by: Athan <[email protected]>
1 parent f7eba0f commit 0a76444

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ccopy/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex64' );
4444
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
4545
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
4646
*
47-
* ccopy.ndarray( x.length, x, 1, 0, y, 1, 0 );
47+
* ccopy( x.length, x, 1, 0, y, 1, 0 );
4848
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
4949
*/
5050
function ccopy( N, x, strideX, offsetX, y, strideY, offsetY ) {

0 commit comments

Comments
 (0)