Skip to content

Commit cb5175d

Browse files
committed
Auto-generated commit
1 parent ae6b426 commit cb5175d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

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

702702
<details>
703703

704+
- [`9d53583`](https://github.com/stdlib-js/stdlib/commit/9d53583c9f82e1b2e5dc084849d98bd9c3214d45) - **test:** update descriptions _(by Athan Reines)_
704705
- [`3c567b6`](https://github.com/stdlib-js/stdlib/commit/3c567b634cf5e5fa5e31b64f94206db5b4a88133) - **feat:** update `ndarray/base` TypeScript declarations (#9640) [(#9640)](https://github.com/stdlib-js/stdlib/pull/9640) _(by stdlib-bot)_
705706
- [`483acba`](https://github.com/stdlib-js/stdlib/commit/483acba3dbcea263aa0014a2db41e1c073f8338b) - **feat:** add `ndarray/find-last` [(#8724)](https://github.com/stdlib-js/stdlib/pull/8724) _(by Muhammad Haris, Athan Reines, stdlib-bot)_
706707
- [`90021da`](https://github.com/stdlib-js/stdlib/commit/90021dae5b5a3b4fbeb5e2366c71b5ddf2095555) - **chore:** clean-up _(by Athan Reines)_

base/spread-dimensions/test/test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ tape( 'the function prepends singleton dimensions', function test( t ) {
176176
t.end();
177177
});
178178

179-
tape( 'the function prepends singleton dimensions (negative axis)', function test( t ) {
179+
tape( 'the function prepends singleton dimensions (negative index)', function test( t ) {
180180
var x;
181181
var y;
182182

@@ -222,7 +222,7 @@ tape( 'the function appends singleton dimensions', function test( t ) {
222222
t.end();
223223
});
224224

225-
tape( 'the function appends singleton dimensions (negative axis)', function test( t ) {
225+
tape( 'the function appends singleton dimensions (negative index)', function test( t ) {
226226
var x;
227227
var y;
228228

@@ -268,7 +268,7 @@ tape( 'the function inserts singleton dimensions', function test( t ) {
268268
t.end();
269269
});
270270

271-
tape( 'the function inserts singleton dimensions (negative axis)', function test( t ) {
271+
tape( 'the function inserts singleton dimensions (negative index)', function test( t ) {
272272
var x;
273273
var y;
274274

@@ -307,7 +307,7 @@ tape( 'the function prepends singleton dimensions (base; row-major)', function t
307307
t.end();
308308
});
309309

310-
tape( 'the function prepends singleton dimensions (base; row-major; negative axis)', function test( t ) {
310+
tape( 'the function prepends singleton dimensions (base; row-major; negative index)', function test( t ) {
311311
var x;
312312
var y;
313313

@@ -371,7 +371,7 @@ tape( 'the function appends singleton dimensions (base; row-major)', function te
371371
t.end();
372372
});
373373

374-
tape( 'the function appends singleton dimensions (base; row-major; negative axis)', function test( t ) {
374+
tape( 'the function appends singleton dimensions (base; row-major; negative index)', function test( t ) {
375375
var x;
376376
var y;
377377

@@ -434,7 +434,7 @@ tape( 'the function inserts singleton dimensions (base; row-major)', function te
434434
t.end();
435435
});
436436

437-
tape( 'the function inserts singleton dimensions (base; row-major; negative axis)', function test( t ) {
437+
tape( 'the function inserts singleton dimensions (base; row-major; negative index)', function test( t ) {
438438
var x;
439439
var y;
440440

0 commit comments

Comments
 (0)