Skip to content

Commit f11a253

Browse files
committed
fixed linter errors
1 parent 9431db5 commit f11a253

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/wasm/cscal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var cx1 = new Complex64Array( cx0.buffer, cx0.BYTES_PER_ELEMENT*1 ); // start at
9494

9595
// Scales every other value from `cx1` by `ca`...
9696
cscal.main( 3, ca, cx1, 1 );
97-
// x => <Complex64Array>[ 1.0, 2.0, -2.0, 14.0, -2.0, 22.0, -2.0, 30.0]
97+
// cx1 => <Complex64Array>[ 1.0, 2.0, -2.0, 14.0, -2.0, 22.0, -2.0, 30.0]
9898

9999
```
100100

lib/node_modules/@stdlib/blas/base/wasm/cscal/lib/routine.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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
*/
8585
function 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
*/
131131
setReadOnly( 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
*/
169169
setReadOnly( Routine.prototype, 'ndarray', function cscal( N, alpha, x, strideX, offsetX ) {
170170
var ptrs;

0 commit comments

Comments
 (0)