Skip to content

Commit 63f08ff

Browse files
committed
docs: add return annotation
1 parent ba99cc0 commit 63f08ff

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ cscal.ndarray( N, z, x, 1, 0 );
390390

391391
// Print the results:
392392
console.log( reinterpretComplex64( x, 0 ) );
393+
// => <Float32Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0, -2.0, 30.0, -2.0, 38.0 ]
393394
```
394395

395396
</section>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function main() {
4545

4646
// Print the results:
4747
console.log( reinterpretComplex64( x, 0 ) );
48+
// => <Float32Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0, -2.0, 30.0, -2.0, 38.0 ]
4849
}
4950

5051
main();

0 commit comments

Comments
 (0)