Skip to content

Commit 832ee29

Browse files
committed
Auto-generated commit
1 parent eb0dc06 commit 832ee29

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3540,6 +3540,7 @@ A total of 560 issues were closed in this release:
35403540

35413541
<details>
35423542

3543+
- [`40fddc9`](https://github.com/stdlib-js/stdlib/commit/40fddc9801524ef1ff07040447efbb70cdfa7452) - **test:** fix test descriptions _(by Athan Reines)_
35433544
- [`7830472`](https://github.com/stdlib-js/stdlib/commit/783047291af025831264739d9841e60ab32232f2) - **bench:** fix description _(by Athan Reines)_
35443545
- [`eb83311`](https://github.com/stdlib-js/stdlib/commit/eb83311758f6cf348950ac84555127d03dd0155e) - **bench:** fix description _(by Athan Reines)_
35453546
- [`50b3a2c`](https://github.com/stdlib-js/stdlib/commit/50b3a2c95317bf69b879709c648aacf908439c16) - **docs:** fix function name tags _(by Philipp Burckhardt)_

strided/dnanmidrange/test/test.dnanmidrange.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
8282
t.end();
8383
});
8484

85-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', function test( t ) {
85+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', function test( t ) {
8686
var x;
8787
var v;
8888

@@ -145,7 +145,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
145145
t.end();
146146
});
147147

148-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', function test( t ) {
148+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
149149
var x;
150150
var v;
151151

strided/dnanmidrange/test/test.dnanmidrange.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
9191
t.end();
9292
});
9393

94-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', opts, function test( t ) {
94+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', opts, function test( t ) {
9595
var x;
9696
var v;
9797

@@ -154,7 +154,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
154154
t.end();
155155
});
156156

157-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', opts, function test( t ) {
157+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', opts, function test( t ) {
158158
var x;
159159
var v;
160160

strided/dnanmidrange/test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
8282
t.end();
8383
});
8484

85-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', function test( t ) {
85+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', function test( t ) {
8686
var x;
8787
var v;
8888

@@ -145,7 +145,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
145145
t.end();
146146
});
147147

148-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', function test( t ) {
148+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
149149
var x;
150150
var v;
151151

strided/dnanmidrange/test/test.ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
9191
t.end();
9292
});
9393

94-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', opts, function test( t ) {
94+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', opts, function test( t ) {
9595
var x;
9696
var v;
9797

@@ -154,7 +154,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
154154
t.end();
155155
});
156156

157-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', opts, function test( t ) {
157+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', opts, function test( t ) {
158158
var x;
159159
var v;
160160

0 commit comments

Comments
 (0)