Skip to content

Commit 20b9402

Browse files
authored
docs: update namespace TypeScript declaration comments
PR-URL: #4817 Reviewed-by: Athan Reines <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 4486641 commit 20b9402

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2253,12 +2253,12 @@ interface Namespace {
22532253
gsumpw: typeof gsumpw;
22542254

22552255
/**
2256-
* Adds a constant to each element in a single-precision floating-point strided array.
2256+
* Adds a scalar constant to each element in a single-precision floating-point strided array.
22572257
*
22582258
* @param N - number of indexed elements
2259-
* @param alpha - constant
2259+
* @param alpha - scalar constant
22602260
* @param x - input array
2261-
* @param stride - stride length
2261+
* @param strideX - stride length
22622262
* @returns `x`
22632263
*
22642264
* @example
@@ -2280,12 +2280,12 @@ interface Namespace {
22802280
sapx: typeof sapx;
22812281

22822282
/**
2283-
* Adds a constant to each single-precision floating-point strided array element and computes the sum.
2283+
* Adds a scalar constant to each single-precision floating-point strided array element and computes the sum.
22842284
*
22852285
* @param N - number of indexed elements
2286-
* @param alpha - constant
2286+
* @param alpha - scalar constant
22872287
* @param x - input array
2288-
* @param stride - stride length
2288+
* @param strideX - stride length
22892289
* @returns sum
22902290
*
22912291
* @example
@@ -2539,9 +2539,9 @@ interface Namespace {
25392539
* @param N - number of indexed elements
25402540
* @param sum - initial sum
25412541
* @param x - input array
2542-
* @param strideX - `x` stride length
2542+
* @param strideX - stride length for `x`
25432543
* @param y - output array
2544-
* @param strideY - `y` stride length
2544+
* @param strideY - stride length for `y`
25452545
* @returns output array
25462546
*
25472547
* @example
@@ -2570,9 +2570,9 @@ interface Namespace {
25702570
* @param N - number of indexed elements
25712571
* @param sum - initial sum
25722572
* @param x - input array
2573-
* @param strideX - `x` stride length
2573+
* @param strideX - stride length for `x`
25742574
* @param y - output array
2575-
* @param strideY - `y` stride length
2575+
* @param strideY - stride length for `y`
25762576
* @returns output array
25772577
*
25782578
* @example

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ interface Namespace {
12681268
*
12691269
* @param N - number of indexed elements
12701270
* @param x - input array
1271-
* @param stride - stride length
1271+
* @param strideX - stride length
12721272
* @returns arithmetic mean
12731273
*
12741274
* @example
@@ -2084,7 +2084,7 @@ interface Namespace {
20842084
*
20852085
* @param N - number of indexed elements
20862086
* @param x - input array
2087-
* @param stride - stride length
2087+
* @param strideX - stride length
20882088
* @returns arithmetic mean
20892089
*
20902090
* @example
@@ -4338,7 +4338,7 @@ interface Namespace {
43384338
*
43394339
* @param N - number of indexed elements
43404340
* @param x - input array
4341-
* @param stride - stride length
4341+
* @param strideX - stride length
43424342
* @returns arithmetic mean
43434343
*
43444344
* @example

0 commit comments

Comments
 (0)