Skip to content

Commit 59db850

Browse files
authored
chore: address commit comments
PR-URL: #8752 Closes: #8700 Reviewed-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Karan Anand <anandkarancompsci@gmail.com>
1 parent 0371c46 commit 59db850

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/wasm/csrot/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,10 @@ interface Routine extends ModuleWrapper {
434434
* mod.read( cyptr, viewY );
435435
*
436436
* console.log( reinterpretComplex64( viewY, 0 ) );
437-
* // => <Float32Array>[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8, ~-5.4, -6 ]
437+
* // => <Float32Array>[ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8, ~-5.4, -6.0 ]
438438
*
439439
* console.log( reinterpretComplex64( viewX, 0 ) );
440-
* // => <Float32Array>[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4, ~7.2, 8 ]
440+
* // => <Float32Array>[ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4, ~7.2, 8.0 ]
441441
*/
442442
Module: ModuleConstructor;
443443
}

lib/node_modules/@stdlib/blas/base/wasm/zdrot/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ interface Routine extends ModuleWrapper {
436436
* console.log( reinterpretComplex128( viewY, 0 ) );
437437
* // => <Float64Array>[ -0.6, -1.2, ~-1.8, -2.4, -3.0, ~-3.6, -4.2, -4.8, ~-5.4, -6.0 ]
438438
* console.log( reinterpretComplex128( viewX, 0 ) );
439-
* // => <Float64Array>[ 0.8, 1.6, ~2.4, 3.2, 4.0, ~4.8, ~5.6, 6.4, 7.2, 8 ]
439+
* // => <Float64Array>[ 0.8, 1.6, ~2.4, 3.2, 4.0, ~4.8, ~5.6, 6.4, 7.2, 8.0 ]
440440
*/
441441
Module: ModuleConstructor;
442442
}

0 commit comments

Comments
 (0)