Skip to content

Commit 294bdb6

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents af9ff48 + 891358d commit 294bdb6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/dapx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var x = new Float64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
6060
var N = floor( x.length / 2 );
6161

6262
dapx( N, 5.0, x, 2 );
63-
// x => <Float64Array>[ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 0.0, -3.0 ]
63+
// x => <Float64Array>[ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 4.0, -3.0 ]
6464
```
6565

6666
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.

lib/node_modules/@stdlib/blas/ext/base/gapx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ];
5757
var N = floor( x.length / 2 );
5858

5959
gapx( N, 5.0, x, 2 );
60-
// x => [ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 0.0, -3.0 ]
60+
// x => [ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 4.0, -3.0 ]
6161
```
6262

6363
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.

lib/node_modules/@stdlib/blas/ext/base/sapx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var x = new Float32Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
6060
var N = floor( x.length / 2 );
6161

6262
sapx( N, 5.0, x, 2 );
63-
// x => <Float32Array>[ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 0.0, -3.0 ]
63+
// x => <Float32Array>[ 3.0, 1.0, 8.0, -5.0, 9.0, 0.0, 4.0, -3.0 ]
6464
```
6565

6666
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.

0 commit comments

Comments
 (0)