Skip to content

Commit 91c1c68

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent b8b4e1f commit 91c1c68

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

Lines changed: 4 additions & 4 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, 6.0, -2.0, 14.0, -2.0, 22.0]
49+
// cx => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
5050

5151
```
5252

@@ -71,7 +71,7 @@ var ca = new Complex64( 2.0, 0.0 );
7171

7272
// Perform operation:
7373
cscal.main( 2, ca, cx, 2 );
74-
// cx => <Complex64Array>[ 2.0, 4.0, 3.0, 4.0, 10.0, 12.0]
74+
// cx => <Complex64Array>[ 2.0, 4.0, 3.0, 4.0, 10.0, 12.0 ]
7575

7676
```
7777

@@ -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-
// cx1 => <Complex64Array>[ -2.0, 14.0, -2.0, 22.0, -2.0, 30.0]
97+
// cx0 => <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, 6.0, -2.0, 14.0, -2.0, 22.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/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ interface Routine extends ModuleWrapper {
326326
*
327327
* // Perform operation:
328328
* cscal.main( x.length, z, x, 1 );
329-
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0]
329+
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
330330
*/
331331
main( N: number, alpha: Complex64, x: Complex64Array, strideX: number ): Complex64Array;
332332

@@ -443,7 +443,7 @@ interface Routine extends ModuleWrapper {
443443
*
444444
* // Perform operation:
445445
* cscal.main( x.length, z, x, 1 );
446-
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0]
446+
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
447447
*
448448
* @example
449449
* var Complex64Array = require( '@stdlib/array/complex64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
*
3737
* // Perform operation:
3838
* cscal.main( x.length, z, x, 1 );
39-
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0]
39+
* // x => <Complex64Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
4040
*
4141
* @example
4242
* var Complex64Array = require( '@stdlib/array/complex64' );

0 commit comments

Comments
 (0)