Skip to content

Commit 45addf3

Browse files
committed
test: add indefinite articles across blas/base/ndarray/*axpy test descriptions
Propagates fix from d4c1b8b1a ("test: update description") and b8ad692 ("test: update description") to sibling axpy packages — inserting missing "a " before "one-dimensional ndarray `x`" and "one-dimensional ndarray `y`" in the top-level tape() description. Affects `gaxpy`, `saxpy`, `daxpy`. https://claude.ai/code/session_01GXZT2uLjX36Q2EepAt4GeQ
1 parent 414d61b commit 45addf3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ tape( 'the function has an arity of 1', function test( t ) {
5959
t.end();
6060
});
6161

62-
tape( 'the function multiplies one-dimensional ndarray `x` by a constant `alpha` and adds the result to one-dimensional ndarray `y`', function test( t ) {
62+
tape( 'the function multiplies a one-dimensional ndarray `x` by a constant `alpha` and adds the result to a one-dimensional ndarray `y`', function test( t ) {
6363
var expected;
6464
var alpha;
6565
var xbuf;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ tape( 'the function has an arity of 1', function test( t ) {
5858
t.end();
5959
});
6060

61-
tape( 'the function multiplies one-dimensional ndarray `x` by a constant `alpha` and adds the result to one-dimensional ndarray `y`', function test( t ) {
61+
tape( 'the function multiplies a one-dimensional ndarray `x` by a constant `alpha` and adds the result to a one-dimensional ndarray `y`', function test( t ) {
6262
var expected;
6363
var alpha;
6464
var xbuf;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ tape( 'the function has an arity of 1', function test( t ) {
5959
t.end();
6060
});
6161

62-
tape( 'the function multiplies one-dimensional ndarray `x` by a constant `alpha` and adds the result to one-dimensional ndarray `y`', function test( t ) {
62+
tape( 'the function multiplies a one-dimensional ndarray `x` by a constant `alpha` and adds the result to a one-dimensional ndarray `y`', function test( t ) {
6363
var expected;
6464
var alpha;
6565
var xbuf;

0 commit comments

Comments
 (0)