Skip to content

Commit 8e2030a

Browse files
committed
Auto-generated commit
1 parent 61739ff commit 8e2030a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`547176e`](https://github.com/stdlib-js/stdlib/commit/547176ec139fa4257ee56a3be0597255049fbc12) - **test:** fix grammar in test descriptions _(by Athan Reines)_
2526
- [`9c31305`](https://github.com/stdlib-js/stdlib/commit/9c31305739ee5411d758efbe4ac7de92ae3e939b) - **test:** fix grammar in test descriptions _(by Athan Reines)_
2627
- [`67f7557`](https://github.com/stdlib-js/stdlib/commit/67f7557ca13ab425513196b26601e46f8a059ac2) - **chore:** clean-up [(#13283)](https://github.com/stdlib-js/stdlib/pull/13283) _(by Philipp Burckhardt)_
2728
- [`2c4aec3`](https://github.com/stdlib-js/stdlib/commit/2c4aec3f6c56e646c02a447bd1e81ae1e9972404) - **feat:** add `blas/ext/base/gfirst-index-equal` [(#13266)](https://github.com/stdlib-js/stdlib/pull/13266) _(by Muhammad Haris, Athan Reines)_

test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ tape( 'the function returns the first index of an element which equals a corresp
160160
t.end();
161161
});
162162

163-
tape( 'the function returns `-1` if provided an `N` parameter is less than or equal to zero', function test( t ) {
163+
tape( 'the function returns `-1` if provided an `N` parameter which is less than or equal to zero', function test( t ) {
164164
var actual;
165165

166166
actual = gfirstIndexEqual( 0, [ 1.0, 2.0, 3.0 ], 1, 0, [ 1.0, 2.0, 3.0 ], 1, 0 );
@@ -172,7 +172,7 @@ tape( 'the function returns `-1` if provided an `N` parameter is less than or eq
172172
t.end();
173173
});
174174

175-
tape( 'the function returns `-1` if provided an `N` parameter is less than or equal to zero (accessors)', function test( t ) {
175+
tape( 'the function returns `-1` if provided an `N` parameter which is less than or equal to zero (accessors)', function test( t ) {
176176
var actual;
177177

178178
actual = gfirstIndexEqual( 0, toAccessorArray( [ 1.0, 2.0, 3.0 ] ), 1, 0, toAccessorArray( [ 1.0, 2.0, 3.0 ] ), 1, 0 );

0 commit comments

Comments
 (0)