Skip to content

Commit 347a3d4

Browse files
committed
chore: fix docs and update comment
1 parent aab19b2 commit 347a3d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@
371371
Int32Array before passing the values to this method.
372372

373373
If provided an array having an unknown or "generic" data type, elements are
374-
written as double-precision floating-point numbers.
374+
written as single-precision floating-point numbers.
375375

376376
Parameters
377377
----------
@@ -410,7 +410,7 @@
410410
after reading memory values using this method.
411411

412412
If provided an output array having an unknown or "generic" data type,
413-
elements are read as double-precision floating-point numbers.
413+
elements are read as single-precision floating-point numbers.
414414

415415
Parameters
416416
----------

lib/node_modules/@stdlib/blas/base/scopy-wasm/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ tape( 'the `main` method supports view offsets', function test( t ) {
242242

243243
// Create offset views...
244244
x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // begin at 2nd element
245-
y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*3 ); // begin at the 4th element
245+
y1 = new Float32Array( y0.buffer, y0.BYTES_PER_ELEMENT*3 ); // begin at 4th element
246246

247247
scopy.main( 3, x1, -2, y1, 1 );
248248
expected = new Float32Array([

0 commit comments

Comments
 (0)