Skip to content

Commit 0055707

Browse files
committed
Auto-generated commit
1 parent ff7f6c4 commit 0055707

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

‎CHANGELOG.md‎

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

591591
<details>
592592

593+
- [`bf13b2e`](https://github.com/stdlib-js/stdlib/commit/bf13b2e3801d56c8ec137e4160834c424af5f40f) - **test:** fix descriptions _(by Athan Reines)_
593594
- [`2f5f302`](https://github.com/stdlib-js/stdlib/commit/2f5f3024197771149f91359080983ae86191caba) - **test:** fix description _(by Athan Reines)_
594595
- [`7ac6058`](https://github.com/stdlib-js/stdlib/commit/7ac6058fdc8d3eede7ff5bb4e02fcba4b54e0211) - **docs:** add comment _(by Athan Reines)_
595596
- [`0af16c9`](https://github.com/stdlib-js/stdlib/commit/0af16c9618cb9bf7f5f3c521a8dbfc3e3f640b42) - **style:** resolve lint errors _(by Athan Reines)_

‎any/test/test.assign.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ tape( 'the function throws an error if provided an options argument which is not
209209
}
210210
});
211211

212-
tape( 'the function throws an error if provided an options argument with invalid `dims` property', function test( t ) {
212+
tape( 'the function throws an error if provided an options argument with an invalid `dims` property', function test( t ) {
213213
var values;
214214
var x;
215215
var y;

‎any/test/test.main.js‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ tape( 'the function throws an error if provided an options argument with a `dims
192192
}
193193
});
194194

195-
tape( 'the function throws an error if provided an options argument with `dims` property which contains duplicate dimensions', function test( t ) {
195+
tape( 'the function throws an error if provided an options argument with a `dims` property which contains duplicate dimensions', function test( t ) {
196196
var values;
197197
var x;
198198
var i;
@@ -221,7 +221,7 @@ tape( 'the function throws an error if provided an options argument with `dims`
221221
}
222222
});
223223

224-
tape( 'the function throws an error if provided an options argument with `dims` property which contains more dimensions than are present in the input ndarray', function test( t ) {
224+
tape( 'the function throws an error if provided an options argument with a `dims` property which contains more dimensions than are present in the input ndarray', function test( t ) {
225225
var values;
226226
var x;
227227
var i;
@@ -251,7 +251,7 @@ tape( 'the function throws an error if provided an options argument with `dims`
251251
}
252252
});
253253

254-
tape( 'the function throws an error if provided an options argument with invalid `keepdims` property', function test( t ) {
254+
tape( 'the function throws an error if provided an options argument with an invalid `keepdims` property', function test( t ) {
255255
var values;
256256
var x;
257257
var i;

0 commit comments

Comments
 (0)