@@ -60,7 +60,7 @@ var Module = require( './module.js' );
6060*
6161* // Perform operation:
6262* cscal.main( x.length, z, x, 1 );
63- * // cx => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
63+ * // x => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
6464*
6565* @example
6666* var Complex64Array = require( '@stdlib/array/complex64' );
@@ -80,7 +80,7 @@ var Module = require( './module.js' );
8080*
8181* // Perform operation:
8282* cscal.ndarray( x.length, z, x, 1, 0 );
83- * cx => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
83+ * // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
8484*/
8585function Routine ( ) {
8686 if ( ! ( this instanceof Routine ) ) {
@@ -126,7 +126,7 @@ inherits( Routine, Module );
126126*
127127* // Perform operation:
128128* cscal.main( x.length, z, x, 1 );
129- * // cx => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
129+ * // x => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
130130*/
131131setReadOnly ( Routine . prototype , 'main' , function cscal ( N , alpha , x , strideX ) {
132132 return this . ndarray ( N , alpha , x , strideX , stride2offset ( N , strideX ) ) ;
@@ -164,7 +164,7 @@ setReadOnly( Routine.prototype, 'main', function cscal( N, alpha, x, strideX ) {
164164*
165165* // Perform operation:
166166* cscal.ndarray( x.length, z, x, 1, 0 );
167- * cx => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
167+ * // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
168168*/
169169setReadOnly ( Routine . prototype , 'ndarray' , function cscal ( N , alpha , x , strideX , offsetX ) {
170170 var ptrs ;
0 commit comments