diff --git a/lib/node_modules/@stdlib/blas/base/dgemv/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/base/dgemv/test/test.ndarray.js index 843044499ff..5b41a67fbd0 100644 --- a/lib/node_modules/@stdlib/blas/base/dgemv/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dgemv/test/test.ndarray.js @@ -222,7 +222,7 @@ tape( 'the function throws an error if provided an invalid fourteenth argument', } }); -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 ) { +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 ) { var expected; var data; var out; @@ -244,7 +244,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x + t.end(); }); -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 ) { +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 ) { var expected; var data; var out; @@ -266,7 +266,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x + t.end(); }); -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 ) { +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 ) { var expected; var data; var out; @@ -288,7 +288,7 @@ tape( 'the function performs one of the matrix-vector operations `y = α*A*x + t.end(); }); -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 ) { +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 ) { var expected; var data; var out;