Skip to content

Commit 9431db5

Browse files
committed
fixed ci failures
1 parent 6d1e729 commit 9431db5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var ca = new Complex64( 2.0, 2.0 );
4646

4747
// Perform operation:
4848
cscal.main( cx.length, ca, cx, 1 );
49-
// cx => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
49+
// cx => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0]
5050

5151
```
5252

@@ -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-
// cx0 => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
97+
// x => <Complex64Array>[ 1.0, 2.0, -2.0, 14.0, -2.0, 22.0, -2.0, 30.0]
9898

9999
```
100100

@@ -114,7 +114,7 @@ var ca = new Complex64( 2.0, 2.0 );
114114

115115
// Perform operation:
116116
cscal.ndarray( cx.length, ca, cx, 1, 0 );
117-
// cx => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]0 ]
117+
// cx => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0]
118118

119119
```
120120

lib/node_modules/@stdlib/blas/base/wasm/cscal/docs/repl.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@
3535
// Standard usage:
3636
> var cx = new {{alias:@stdlib/array/complex64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
3737
> var ca = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
38-
> {{alias}}.main( 2, ca, cx, 1 );
38+
> {{alias}}.main( 2, ca, cx, 1 )
3939
<Complex64Array>[ -3.0, 4.0, -5.0, 10.0 ]
4040

4141
// Advanced indexing:
4242
> cx = new {{alias:@stdlib/array/complex64}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
4343
> ca = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 1.0 );
44-
> {{alias}}.main( 2, ca, cx, 2 );
44+
> {{alias}}.main( 2, ca, cx, 2 )
4545
<Complex64Array>[ -1.0, 3.0, 3.0, 4.0, -1.0, 11.0 ]
4646

4747
// Using typed array views:
4848
> var cx0 = new {{alias:@stdlib/array/complex64}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
4949
> var cx1 = new {{alias:@stdlib/array/complex64}}( cx0.buffer, cx0.BYTES_PER_ELEMENT*1 );
5050
> var ca = new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 );
51-
> {{alias}}.main( 2, ca, cx1, 1 );
51+
> {{alias}}.main( 2, ca, cx1, 1 )
5252
<Complex64Array>[ -2.0, 14.0, -2.0, 22.0 ]
5353
> cx0
5454
<Complex64Array>[ 1.0, 2.0, -2.0, 14.0, -2.0, 22.0 ]
@@ -90,13 +90,13 @@
9090
// Standard usage:
9191
> var cx = new {{alias:@stdlib/array/complex64}}( [ 1.0, 2.0, 3.0, 4.0 ] );
9292
> var ca = new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 );
93-
> {{alias}}.ndarray( 2, ca, cx, 1, 0 );
93+
> {{alias}}.ndarray( 2, ca, cx, 1, 0 )
9494
<Complex64Array>[ -2.0, 6.0, -2.0, 14.0 ]
9595

9696
// Advanced indexing:
9797
> cx = new {{alias:@stdlib/array/complex64}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
9898
> ca = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
99-
> {{alias}}.ndarray( 2, ca, cx, 1, 2 );
99+
> {{alias}}.ndarray( 2, ca, cx, 1, 2 )
100100
<Complex64Array>[ 1.0, 2.0, 3.0, 4.0, -7.0, 16.0, -9.0, 22.0 ]
101101

102102

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var Routine = require( './routine.js' );
4343
*
4444
* // Perform operation:
4545
* cscal.main( x.length, z, x, 1 );
46-
* // x => <Complex64Array>[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0]
46+
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
4747
*
4848
* @example
4949
* var Complex64Array = require( '@stdlib/array/complex64' );
@@ -57,7 +57,7 @@ var Routine = require( './routine.js' );
5757
*
5858
* // Perform operation:
5959
* cscal.ndarray( x.length, z, x, 1, 0 );
60-
* x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
60+
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
6161
*/
6262
var cscal = new Routine();
6363
cscal.initializeSync(); // eslint-disable-line node/no-sync

0 commit comments

Comments
 (0)