Skip to content

Commit dd926a4

Browse files
committed
Auto-generated commit
1 parent 070faa3 commit dd926a4

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
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+
- [`99388d1`](https://github.com/stdlib-js/stdlib/commit/99388d1aeabe238c519707b8e08843a4bdeb04d4) - **test:** fix grammar in descriptions _(by Athan Reines)_
2526
- [`9000841`](https://github.com/stdlib-js/stdlib/commit/9000841dbe1534a4b1984975068101a641383840) - **style:** fix decimals _(by Athan Reines)_
2627
- [`f78ae7b`](https://github.com/stdlib-js/stdlib/commit/f78ae7b4ed12879282a4e9c20e6c7b5baf2d6e39) - **feat:** add C `ndarray` API and refactor `blas/ext/base/dssum` [(#4262)](https://github.com/stdlib-js/stdlib/pull/4262) _(by Muhammad Haris)_
2728
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_

test/test.dssum.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
152152
t.end();
153153
});
154154

155-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated `N` times', function test( t ) {
155+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated `N` times', function test( t ) {
156156
var x;
157157
var v;
158158

test/test.dssum.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
243243
t.end();
244244
});
245245

246-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated `N` times', opts, function test( t ) {
246+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated `N` times', opts, function test( t ) {
247247
var x;
248248
var v;
249249

test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
152152
t.end();
153153
});
154154

155-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated `N` times', function test( t ) {
155+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated `N` times', function test( t ) {
156156
var x;
157157
var v;
158158

test/test.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
161161
t.end();
162162
});
163163

164-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated `N` times', opts, function test( t ) {
164+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of the first element repeated `N` times', opts, function test( t ) {
165165
var x;
166166
var v;
167167

0 commit comments

Comments
 (0)