8000 Auto-generated commit · stdlib-js/array-put@c8c72e1 · GitHub
[go: up one dir, main page]

Skip to content

Commit c8c72e1

Browse files
committed
Auto-generated commit
1 parent 3c12f4a commit c8c72e1

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2024-06-20)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`33da247`](https://github.com/stdlib-js/stdlib/commit/33da2477cc34e5fcc931b39e996a373d043432e0) - **docs:** fix example _(by Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Athan Reines
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.0.1">
640

741
## 0.0.1 (2024-06-19)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
223223
[npm-image]: http://img.shields.io/npm/v/@stdlib/array-put.svg
224224
[npm-url]: https://npmjs.org/package/@stdlib/array-put
225225

226-
[test-image]: https://github.com/stdlib-js/array-put/actions/workflows/test.yml/badge.svg?branch=v0.0.1
227-
[test-url]: https://github.com/stdlib-js/array-put/actions/workflows/test.yml?query=branch:v0.0.1
226+
[test-image]: https://github.com/stdlib-js/array-put/actions/workflows/test.yml/badge.svg?branch=main
227+
[test-url]: https://github.com/stdlib-js/array-put/actions/workflows/test.yml?query=branch:main
228228

229229
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/array-put/main.svg
230230
[coverage-url]: https://codecov.io/github/stdlib-js/array-put?branch=main

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ var validate = require( './validate.js' );
6767
* var x = [ 1, 2, 3, 4 ];
6868
*
6969
* var indices = [ 1, 2 ];
70-
* var values = [ 20, 30 ];
70+
* var values = [ 30 ];
7171
*
72-
* var out = put( x, indices, [ 30 ] );
72+
* var out = put( x, indices, values );
7373
* // returns [ 1, 30, 30, 4 ]
7474
*
7575
* var bool = ( out === x );

0 commit comments

Comments
 (0)
0