Skip to content

Commit 81fd567

Browse files
committed
Auto-generated commit
1 parent 01a7bd4 commit 81fd567

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
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`4d38ce8`](https://github.com/stdlib-js/stdlib/commit/4d38ce8450beef896c74e578fc03478f7e2f4a97) - **test:** update test descriptions _(by Athan Reines)_
2526
- [`ba6ded3`](https://github.com/stdlib-js/stdlib/commit/ba6ded358ecea8ad39d9b34acce83663ac83948f) - **docs:** change variable naming in `blas/base/csrot` [(#6822)](https://github.com/stdlib-js/stdlib/pull/6822) _(by Shabareesh Shetty, Athan Reines)_
2627
- [`99b9273`](https://github.com/stdlib-js/stdlib/commit/99b9273752c85e3a322ea18dfa60bb7632478fc5) - **docs:** update examples for `blas/base/csrot` [(#4963)](https://github.com/stdlib-js/stdlib/pull/4963) _(by Gururaj Gurram)_
2728
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_

test/test.csrot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ tape( 'the function supports a `y` stride', function test( t ) {
253253
t.end();
254254
});
255255

256-
tape( 'the function returns a reference to the destination array', function test( t ) {
256+
tape( 'the function returns a reference to the second input array', function test( t ) {
257257
var out;
258258
var x;
259259
var y;
@@ -267,7 +267,7 @@ tape( 'the function returns a reference to the destination array', function test
267267
t.end();
268268
});
269269

270-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', function test( t ) {
270+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', function test( t ) {
271271
var viewX;
272272
var viewY;
273273
var xe;

test/test.csrot.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ tape( 'the function supports a `y` stride', opts, function test( t ) {
262262
t.end();
263263
});
264264

265-
tape( 'the function returns a reference to the destination array', opts, function test( t ) {
265+
tape( 'the function returns a reference to the second input array', opts, function test( t ) {
266266
var out;
267267
var x;
268268
var y;
@@ -276,7 +276,7 @@ tape( 'the function returns a reference to the destination array', opts, functio
276276
t.end();
277277
});
278278

279-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', opts, function test( t ) {
279+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', opts, function test( t ) {
280280
var viewX;
281281
var viewY;
282282
var xe;

test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ tape( 'the function supports a `y` offset', function test( t ) {
375375
t.end();
376376
});
377377

378-
tape( 'the function returns a reference to the destination array', function test( t ) {
378+
tape( 'the function returns a reference to the second input array', function test( t ) {
379379
var out;
380380
var x;
381381
var y;
@@ -389,7 +389,7 @@ tape( 'the function returns a reference to the destination array', function test
389389
t.end();
390390
});
391391

392-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', function test( t ) {
392+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', function test( t ) {
393393
var viewX;
394394
var viewY;
395395
var xe;

test/test.ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ tape( 'the function supports a `y` offset', opts, function test( t ) {
384384
t.end();
385385
});
386386

387-
tape( 'the function returns a reference to the destination array', opts, function test( t ) {
387+
tape( 'the function returns a reference to the second input array', opts, function test( t ) {
388388
var out;
389389
var x;
390390
var y;
@@ -398,7 +398,7 @@ tape( 'the function returns a reference to the destination array', opts, functio
398398
t.end();
399399
});
400400

401-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns both vectors unchanged', opts, function test( t ) {
401+
tape( 'if provided an `N` parameter less than or equal to `0`, the function leaves both arrays unchanged', opts, function test( t ) {
402402
var viewX;
403403
var viewY;
404404
var xe;

0 commit comments

Comments
 (0)