Skip to content

Commit cd9253f

Browse files
committed
Auto-generated commit
1 parent bda5d4f commit cd9253f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-01-03)
7+
## Unreleased (2025-01-04)
88

99
<section class="packages">
1010

@@ -870,6 +870,7 @@ A total of 12 people contributed to this release. Thank you to the following con
870870

871871
<details>
872872

873+
- [`3eff7c4`](https://github.com/stdlib-js/stdlib/commit/3eff7c48b5841028d49c159d900b18000c0e9a43) - **docs:** fix comments _(by Athan Reines)_
873874
- [`bc279b5`](https://github.com/stdlib-js/stdlib/commit/bc279b5f310d68ca939e8c03de09ff23fbc4ae68) - **docs:** update related packages sections [(#4485)](https://github.com/stdlib-js/stdlib/pull/4485) _(by stdlib-bot, Philipp Burckhardt)_
874875
- [`7f25676`](https://github.com/stdlib-js/stdlib/commit/7f256762db37ccfb07db2baeda7f5102df5db96c) - **docs:** fix grammar _(by Athan Reines)_
875876
- [`78087d9`](https://github.com/stdlib-js/stdlib/commit/78087d9a551783d642d885fb42b89b4e23acd671) - **fix:** provide missing argument to function _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
2929
Desh Deepak Kant <[email protected]>
30+
Dhruv Arvind Singh <[email protected]>
3031
Divyansh Seth <[email protected]>
3132
Dominic Lim <[email protected]>
3233
Dominik Moritz <[email protected]>
@@ -117,7 +118,7 @@ UtkershBasnet <[email protected]>
117118
Vaibhav Patel <[email protected]>
118119
Varad Gupta <[email protected]>
119120
Vinit Pandit <[email protected]>
120-
Vivek maurya <[email protected].com>
121+
Vivek Maurya <vm8118134@gmail.com>
121122
Xiaochuan Ye <[email protected]>
122123
Yaswanth Kosuru <[email protected]>
123124
Yernar Yergaziyev <[email protected]>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

to-fancy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ var x = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
3737
// Turn the plain array into a "fancy" array:
3838
var y = array2fancy( x );
3939

40-
// Select the first 3 elements:
40+
// Select the first three elements:
4141
var v = y[ ':3' ];
4242
// returns [ 1, 2, 3 ]
4343

4444
// Select every other element, starting from the second element:
4545
v = y[ '1::2' ];
4646
// returns [ 2, 4, 6, 8 ]
4747

48-
// Select every other element, in reverse order, starting with the least element:
48+
// Select every other element, in reverse order, starting with the last element:
4949
v = y[ '::-2' ];
5050
// returns [ 8, 6, 4, 2 ]
5151

0 commit comments

Comments
 (0)