From 225ea04f2c6550fce00272fb2fd907f07e4dac68 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 12:25:11 +0000 Subject: [PATCH 1/3] fix: correct `subtract` keyword in `blas/ext/base/sxsy` Replace stale `add` keyword (copied from an axpy-style sibling) with `subtract` to match the package's semantics (y = x - y) and the keyword convention used in `cxsy`, `gxsy`, and `zxsy`. Ref: c7a7bd41 --- lib/node_modules/@stdlib/blas/ext/base/sxsy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/sxsy/package.json b/lib/node_modules/@stdlib/blas/ext/base/sxsy/package.json index e264f70ad3d0..408ee67bd919 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sxsy/package.json +++ b/lib/node_modules/@stdlib/blas/ext/base/sxsy/package.json @@ -62,7 +62,7 @@ "linear", "algebra", "subroutines", - "add", + "subtract", "transform", "strided", "array", From d58fb8baed86adc51519dff95eb8f855a8dafdaf Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 12:25:45 +0000 Subject: [PATCH 2/3] fix: correct `subtract` keyword in `blas/ext/base/dxsy` Replace stale `add` keyword (copied from an axpy-style sibling) with `subtract` to match the package's semantics (y = x - y) and the keyword convention used in `cxsy`, `gxsy`, and `zxsy`. Ref: 096398f1 --- lib/node_modules/@stdlib/blas/ext/base/dxsy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/dxsy/package.json b/lib/node_modules/@stdlib/blas/ext/base/dxsy/package.json index 11c2c902b97b..5bdd269722a7 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dxsy/package.json +++ b/lib/node_modules/@stdlib/blas/ext/base/dxsy/package.json @@ -62,7 +62,7 @@ "linear", "algebra", "subroutines", - "add", + "subtract", "transform", "strided", "array", From 7b700d29a56e5de75290b3e52946641ae43a3ebd Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 22 Jun 2026 12:25:51 +0000 Subject: [PATCH 3/3] fix: correct `double` keyword in `blas/ext/base/zxsy` Replace stale `single` keyword (carried over from the single-precision `cxsy` sibling) with `double`. `zxsy` is the double-precision complex variant; surrounding `complex128`/`float64` keywords already tag it correctly. Ref: 2a403964 --- lib/node_modules/@stdlib/blas/ext/base/zxsy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/zxsy/package.json b/lib/node_modules/@stdlib/blas/ext/base/zxsy/package.json index efa0d162ad55..39e0a68ef189 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zxsy/package.json +++ b/lib/node_modules/@stdlib/blas/ext/base/zxsy/package.json @@ -74,7 +74,7 @@ "complex128", "complex128array", "float64", - "single" + "double" ], "__stdlib__": { "wasm": false