Skip to content

Commit 2500f2c

Browse files
committed
Auto-generated commit
1 parent 37a4418 commit 2500f2c

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-31)
7+
## Unreleased (2025-01-04)
88

99
<section class="bug-fixes">
1010

@@ -24,6 +24,7 @@
2424

2525
<details>
2626

27+
- [`3eff7c4`](https://github.com/stdlib-js/stdlib/commit/3eff7c48b5841028d49c159d900b18000c0e9a43) - **docs:** fix comments _(by Athan Reines)_
2728
- [`78087d9`](https://github.com/stdlib-js/stdlib/commit/78087d9a551783d642d885fb42b89b4e23acd671) - **fix:** provide missing argument to function _(by Athan Reines)_
2829
- [`c13c153`](https://github.com/stdlib-js/stdlib/commit/c13c1532c804118dc9ccbcb81867d7723215f671) - **docs:** document exceptions _(by Athan Reines)_
2930
- [`64e4bd6`](https://github.com/stdlib-js/stdlib/commit/64e4bd6055042207ce2e5ae6687ca8992b06367f) - **docs:** fix missing option description _(by Athan Reines)_

CONTRIBUTORS

+2-1
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

+1-1
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.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ var x = [ 1, 2, 3, 4, 5, 6, 7, 8 ];
5050
// Turn the plain array into a "fancy" array:
5151
var y = array2fancy( x );
5252

53-
// Select the first 3 elements:
53+
// Select the first three elements:
5454
var v = y[ ':3' ];
5555
// returns [ 1, 2, 3 ]
5656

5757
// Select every other element, starting from the second element:
5858
v = y[ '1::2' ];
5959
// returns [ 2, 4, 6, 8 ]
6060

61-
// Select every other element, in reverse order, starting with the least element:
61+
// Select every other element, in reverse order, starting with the last element:
6262
v = y[ '::-2' ];
6363
// returns [ 8, 6, 4, 2 ]
6464

@@ -639,7 +639,7 @@ See [LICENSE][stdlib-license].
639639

640640
## Copyright
641641

642-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
642+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
643643

644644
</section>
645645

0 commit comments

Comments
 (0)