Skip to content

Commit 283fb86

Browse files
committed
test: update descriptions
1 parent bebfa1d commit 283fb86

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/blas/base/sgemv/test/test.ndarray.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ tape( 'the function throws an error if provided an invalid fourteenth argument',
222222
}
223223
});
224224

225-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, no-transpose )', function test( t ) {
225+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, no-transpose)', function test( t ) {
226226
var expected;
227227
var data;
228228
var out;
@@ -244,7 +244,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
244244
t.end();
245245
});
246246

247-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, no-transpose )', function test( t ) {
247+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, no-transpose)', function test( t ) {
248248
var expected;
249249
var data;
250250
var out;
@@ -266,7 +266,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
266266
t.end();
267267
});
268268

269-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, transpose )', function test( t ) {
269+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, transpose)', function test( t ) {
270270
var expected;
271271
var data;
272272
var out;
@@ -288,7 +288,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
288288
t.end();
289289
});
290290

291-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, transpose )', function test( t ) {
291+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, transpose)', function test( t ) {
292292
var expected;
293293
var data;
294294
var out;

lib/node_modules/@stdlib/blas/base/sgemv/test/test.sgemv.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ tape( 'the function throws an error if provided an invalid twelfth argument', fu
236236
}
237237
});
238238

239-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, no-transpose )', function test( t ) {
239+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, no-transpose)', function test( t ) {
240240
var expected;
241241
var data;
242242
var out;
@@ -258,7 +258,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
258258
t.end();
259259
});
260260

261-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, no-transpose )', function test( t ) {
261+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, no-transpose)', function test( t ) {
262262
var expected;
263263
var data;
264264
var out;
@@ -280,7 +280,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
280280
t.end();
281281
});
282282

283-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( row-major, transpose )', function test( t ) {
283+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (row-major, transpose)', function test( t ) {
284284
var expected;
285285
var data;
286286
var out;
@@ -302,7 +302,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x +
302302
t.end();
303303
});
304304

305-
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` ( column-major, transpose )', function test( t ) {
305+
tape( 'the function performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` (column-major, transpose)', function test( t ) {
306306
var expected;
307307
var data;
308308
var out;

0 commit comments

Comments
 (0)