Skip to content

Commit cedc803

Browse files
committed
Auto-generated commit
1 parent 9d4502b commit cedc803

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<details>
1414

15+
- [`2e48726`](https://github.com/stdlib-js/stdlib/commit/2e48726f243a6aec47a6c1e748cfd0faefea9216) - **docs:** update examples _(by Athan Reines)_
1516
- [`1f5d811`](https://github.com/stdlib-js/stdlib/commit/1f5d811a759c1604e8620a12fad29dde86bfff50) - **docs:** update examples _(by Athan Reines)_
1617
- [`3fdc2ab`](https://github.com/stdlib-js/stdlib/commit/3fdc2abb2fc6e512e08489a24513abff4db6e347) - **docs:** update examples _(by Athan Reines)_
1718
- [`0db19ee`](https://github.com/stdlib-js/stdlib/commit/0db19eee3d3827e40cdbb9098fcec66205925d15) - **docs:** improve example clarity _(by Athan Reines)_

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ While [`typed array`][mdn-typed-array] views mandate a view offset based on the
140140
```javascript
141141
var Float64Array = require( '@stdlib/array-float64' );
142142

143-
var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
144-
var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
143+
var A = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
144+
var B = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
145145

146146
dlacpy.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
147-
// B => <Float64Array>[ 0.0, 0.0, 1.0, 2.0, 3.0, 4.0 ]
147+
// B => <Float64Array>[ 0.0, 0.0, 2.0, 3.0, 4.0, 5.0 ]
148148
```
149149

150150
</section>

0 commit comments

Comments
 (0)