Skip to content

Commit e72597f

Browse files
committed
Auto-generated commit
1 parent 94cda54 commit e72597f

File tree

11 files changed

+19
-13
lines changed

11 files changed

+19
-13
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-04-25)
7+
## Unreleased (2025-05-02)
88

99
<section class="features">
1010

@@ -128,9 +128,9 @@
128128

129129
### Closed Issues
130130

131-
This release closes the following issue:
131+
A total of 2 issues were closed in this release:
132132

133-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004)
133+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6800](https://github.com/stdlib-js/stdlib/issues/6800)
134134

135135
</section>
136136

@@ -142,6 +142,8 @@ This release closes the following issue:
142142

143143
<details>
144144

145+
- [`66d1218`](https://github.com/stdlib-js/stdlib/commit/66d12182461dcd60d7168c47e4697f4d3421302f) - **chore:** fix JavaScript lint errors [(#6899)](https://github.com/stdlib-js/stdlib/pull/6899) _(by zhanggy)_
146+
- [`805f439`](https://github.com/stdlib-js/stdlib/commit/805f439579204a004b3ff7cb040d5dca166c3205) - **chore:** minor clean-up _(by Philipp Burckhardt)_
145147
- [`ed9a036`](https://github.com/stdlib-js/stdlib/commit/ed9a036b50dd520e8090f047928e6e45611d0b46) - **docs:** fix typo _(by Philipp Burckhardt)_
146148
- [`5f73301`](https://github.com/stdlib-js/stdlib/commit/5f73301a8509cc423a06b02140c4e316fd02ff49) - **docs:** minor clean-up _(by Philipp Burckhardt)_
147149
- [`878adf9`](https://github.com/stdlib-js/stdlib/commit/878adf9c25bc91bcacbe564234de5d1893402f5d) - **chore:** fix README lint error _(by Neeraj Pathak)_
@@ -191,13 +193,14 @@ This release closes the following issue:
191193

192194
### Contributors
193195

194-
A total of 5 people contributed to this release. Thank you to the following contributors:
196+
A total of 6 people contributed to this release. Thank you to the following contributors:
195197

196198
- Athan Reines
197199
- Gururaj Gurram
198200
- Jay Soni
199201
- Neeraj Pathak
200202
- Philipp Burckhardt
203+
- zhanggy
201204

202205
</section>
203206

CONTRIBUTORS

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ GK Bishnoi <[email protected]>
5454
GURU PRASAD SHARMA <[email protected]>
5555
5656
Gautam sharma <[email protected]>
57+
Girish Garg <[email protected]>
5758
Golden Kumar <[email protected]>
5859
Gunj Joshi <[email protected]>
5960
Gururaj Gurram <[email protected]>
@@ -86,6 +87,7 @@ Kohantika Nath <[email protected]>
8687
Krishnam Agarwal <[email protected]>
8788
Krishnendu Das <[email protected]>
8889
Kshitij-Dale <[email protected]>
90+
Lalit Narayan Yadav <[email protected]>
8991
Lovelin Dhoni J B <[email protected]>
9092
9193
Mahfuza Humayra Mohona <[email protected]>
@@ -190,3 +192,4 @@ pranav-1720 <[email protected]>
190192
rahulrangers <[email protected]>
191193
192194
195+

append/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* @module @stdlib/utils/append
2525
*
2626
* @example
27-
* var append = require( '@stdlib/utils/append' );
2827
* var Float64Array = require( '@stdlib/array/float64' );
28+
* var append = require( '@stdlib/utils/append' );
2929
*
3030
* var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
3131
*

do-until-each-right/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tape( 'the function returns the input collection', function test( t ) {
131131
var out;
132132

133133
function predicate() {
134-
t.pass( 'invoked predicated function' );
134+
t.pass( 'invoked predicate function' );
135135
return false;
136136
}
137137

do-until-each/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tape( 'the function returns the input collection', function test( t ) {
155155
var out;
156156

157157
function predicate() {
158-
t.pass( 'invoked predicated function' );
158+
t.pass( 'invoked predicate function' );
159159
return false;
160160
}
161161

do-while-each-right/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tape( 'the function returns the input collection', function test( t ) {
131131
var out;
132132

133133
function predicate() {
134-
t.pass( 'invoked predicated function' );
134+
t.pass( 'invoked predicate function' );
135135
return true;
136136
}
137137

do-while-each/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tape( 'the function returns the input collection', function test( t ) {
155155
var out;
156156

157157
function predicate() {
158-
t.pass( 'invoked predicated function' );
158+
t.pass( 'invoked predicate function' );
159159
return true;
160160
}
161161

until-each-right/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'the function returns the input collection', function test( t ) {
130130
var out;
131131

132132
function predicate() {
133-
t.pass( 'invoked predicated function' );
133+
t.pass( 'invoked predicate function' );
134134
return false;
135135
}
136136

until-each/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ tape( 'the function returns the input collection', function test( t ) {
147147
var out;
148148

149149
function predicate() {
150-
t.pass( 'invoked predicated function' );
150+
t.pass( 'invoked predicate function' );
151151
return false;
152152
}
153153

while-each-right/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'the function returns the input collection', function test( t ) {
130130
var out;
131131

132132
function predicate() {
133-
t.pass( 'invoked predicated function' );
133+
t.pass( 'invoked predicate function' );
134134
return true;
135135
}
136136

while-each/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ tape( 'the function returns the input collection', function test( t ) {
147147
var out;
148148

149149
function predicate() {
150-
t.pass( 'invoked predicated function' );
150+
t.pass( 'invoked predicate function' );
151151
return true;
152152
}
153153

0 commit comments

Comments
 (0)