Skip to content

Commit 2cdb1b6

Browse files
authored
test: fix grammar
Signed-off-by: Athan <[email protected]>
1 parent b6e613e commit 2cdb1b6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsum/test/test.dsum.js

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

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

lib/node_modules/@stdlib/blas/ext/base/dsum/test/test.dsum.native.js

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

233-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
233+
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 ) {
234234
var x;
235235
var v;
236236

lib/node_modules/@stdlib/blas/ext/base/dsum/test/test.ndarray.js

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

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

lib/node_modules/@stdlib/blas/ext/base/dsum/test/test.ndarray.native.js

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

151-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the sum of first element repeated N times', opts, function test( t ) {
151+
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 ) {
152152
var x;
153153
var v;
154154

0 commit comments

Comments
 (0)