Skip to content

Commit bc24915

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 0dc7127 commit bc24915

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ var addon = require( './../src/addon.node' );
4040
*
4141
* @example
4242
* var Complex64Array = require( '@stdlib/array/complex64' );
43-
* var ccopy = require( '@stdlib/blas/base/ccopy' );
4443
*
4544
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
4645
* var y = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
4746
*
48-
* ccopy.ndarray( x.length, x, 1, 0, y, 1, 0 );
4947
* // y => <Complex64Array>[ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ]
5048
*/
5149
function ccopy( N, x, strideX, offsetX, y, strideY, offsetY ) {

0 commit comments

Comments
 (0)