Skip to content

Commit 74464a6

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent a877a5c commit 74464a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/wasm/sdsdot/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tape( 'the `main` method has an arity of 6', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'the `main` method computes the dot product of `x` and `y` with extended accumulation and result', function test( t ) {
41+
tape( 'the `main` method computes the dot product of `x` and `y` with extended accumulation', function test( t ) {
4242
var dot;
4343
var x;
4444
var y;

lib/node_modules/@stdlib/blas/base/wasm/sdsdot/test/test.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tape( 'a module instance has a `main` method which has an arity of 6', function
4848
t.end();
4949
});
5050

51-
tape( 'a module instance has a `main` method which computes the dot product of `x` and `y` with extended accumulation and result', function test( t ) {
51+
tape( 'a module instance has a `main` method which computes the dot product of `x` and `y` with extended accumulation', function test( t ) {
5252
var dot;
5353
var mem;
5454
var mod;

lib/node_modules/@stdlib/blas/base/wasm/sdsdot/test/test.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tape( 'a module instance has an `ndarray` method which has an arity of 8', funct
4848
t.end();
4949
});
5050

51-
tape( 'a module instance has an `ndarray` method which computes the dot product of `x` and `y` with extended accumulation and result', function test( t ) {
51+
tape( 'a module instance has an `ndarray` method which computes the dot product of `x` and `y` with extended accumulation', function test( t ) {
5252
var dot;
5353
var mem;
5454
var mod;

lib/node_modules/@stdlib/blas/base/wasm/sdsdot/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tape( 'the `ndarray` method has an arity of 8', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'the `ndarray` method computes the dot product of `x` and `y` with extended accumulation and result', function test( t ) {
41+
tape( 'the `ndarray` method computes the dot product of `x` and `y` with extended accumulation', function test( t ) {
4242
var dot;
4343
var x;
4444
var y;

0 commit comments

Comments
 (0)