Skip to content

Commit d649da5

Browse files
feat: update namespace TypeScript declarations
PR-URL: #3243 Co-authored-by: Philipp Burckhardt <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: stdlib-bot <[email protected]>
1 parent 136231d commit d649da5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1849,7 +1849,7 @@ interface Namespace {
18491849
* @param N - number of indexed elements
18501850
* @param alpha - constant
18511851
* @param x - input array
1852-
* @param stride - stride length
1852+
* @param stride - index increment
18531853
* @returns input array
18541854
*
18551855
* @example

lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ interface Namespace {
143143
* Adds a scalar constant to each element in a double-precision floating-point strided array.
144144
*
145145
* @param N - number of indexed elements
146-
* @param alpha - constant
146+
* @param alpha - scalar constant
147147
* @param x - input array
148148
* @param strideX - stride length
149149
* @returns input array
@@ -170,7 +170,7 @@ interface Namespace {
170170
* Adds a scalar constant to each double-precision floating-point strided array element and computes the sum.
171171
*
172172
* @param N - number of indexed elements
173-
* @param alpha - constant
173+
* @param alpha - scalar constant
174174
* @param x - input array
175175
* @param strideX - stride length
176176
* @returns sum
@@ -197,7 +197,7 @@ interface Namespace {
197197
* Adds a scalar constant to each double-precision floating-point strided array element and computes the sum using an improved Kahan–Babuška algorithm.
198198
*
199199
* @param N - number of indexed elements
200-
* @param alpha - constant
200+
* @param alpha - scalar constant
201201
* @param x - input array
202202
* @param strideX - stride length
203203
* @returns sum
@@ -224,7 +224,7 @@ interface Namespace {
224224
* Adds a scalar constant to each double-precision floating-point strided array element and computes the sum using a second-order iterative Kahan–Babuška algorithm.
225225
*
226226
* @param N - number of indexed elements
227-
* @param alpha - constant
227+
* @param alpha - scalar constant
228228
* @param x - input array
229229
* @param strideX - stride length
230230
* @returns sum
@@ -820,7 +820,7 @@ interface Namespace {
820820
*
821821
* @param N - number of indexed elements
822822
* @param x - input array
823-
* @param stride - stride length
823+
* @param strideX - stride length
824824
* @returns sum
825825
*
826826
* @example
@@ -868,12 +868,12 @@ interface Namespace {
868868
drev: typeof drev;
869869

870870
/**
871-
* Adds a constant to each single-precision floating-point strided array element and computes the sum using extended accumulation and returning an extended precision result.
871+
* Adds a scalar constant to each single-precision floating-point strided array element, and computes the sum using extended accumulation and returning an extended precision result.
872872
*
873873
* @param N - number of indexed elements
874-
* @param alpha - constant
874+
* @param alpha - scalar constant
875875
* @param x - input array
876-
* @param stride - stride length
876+
* @param strideX - stride length
877877
* @returns sum
878878
*
879879
* @example

0 commit comments

Comments
 (0)