Skip to content

Commit 133c539

Browse files
feat: update namespace TypeScript declarations
PR-URL: #4487 Co-authored-by: Philipp Burckhardt <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: stdlib-bot <[email protected]>
1 parent 02231a7 commit 133c539

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1370,7 +1370,7 @@ interface Namespace {
13701370
*
13711371
* @param N - number of indexed elements
13721372
* @param x - input array
1373-
* @param stride - stride length
1373+
* @param strideX - stride length
13741374
* @returns sum
13751375
*
13761376
* @example
@@ -1490,12 +1490,12 @@ interface Namespace {
14901490
gapxsum: typeof gapxsum;
14911491

14921492
/**
1493-
* Adds a constant to each strided array element and computes the sum using an improved Kahan–Babuška algorithm.
1493+
* Adds a scalar constant to each strided array element and computes the sum using an improved Kahan–Babuška algorithm.
14941494
*
14951495
* @param N - number of indexed elements
1496-
* @param alpha - constant
1496+
* @param alpha - scalar constant
14971497
* @param x - input array
1498-
* @param stride - stride length
1498+
* @param strideX - stride length
14991499
* @returns sum
15001500
*
15011501
* @example
@@ -1636,9 +1636,9 @@ interface Namespace {
16361636
* @param N - number of indexed elements
16371637
* @param sum - initial sum
16381638
* @param x - input array
1639-
* @param strideX - `x` stride length
1639+
* @param strideX - stride length for `x`
16401640
* @param y - output array
1641-
* @param strideY - `y` stride length
1641+
* @param strideY - stride length for `y`
16421642
* @returns output array
16431643
*
16441644
* @example

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ interface Namespace {
529529
*
530530
* @param N - number of indexed elements
531531
* @param x - sorted input array
532-
* @param stride - stride length
532+
* @param strideX - stride length
533533
* @returns maximum absolute value
534534
*
535535
* @example
@@ -555,7 +555,7 @@ interface Namespace {
555555
*
556556
* @param N - number of indexed elements
557557
* @param x - sorted input array
558-
* @param stride - stride length
558+
* @param strideX - stride length
559559
* @returns maximum value
560560
*
561561
* @example
@@ -939,7 +939,7 @@ interface Namespace {
939939
*
940940
* @param N - number of indexed elements
941941
* @param x - sorted input array
942-
* @param stride - stride length
942+
* @param strideX - stride length
943943
* @returns median value
944944
*
945945
* @example
@@ -1043,7 +1043,7 @@ interface Namespace {
10431043
*
10441044
* @param N - number of indexed elements
10451045
* @param x - sorted input array
1046-
* @param stride - stride length
1046+
* @param strideX - stride length
10471047
* @returns minimum value
10481048
*
10491049
* @example
@@ -4261,7 +4261,7 @@ interface Namespace {
42614261
*
42624262
* @param N - number of indexed elements
42634263
* @param x - sorted input array
4264-
* @param stride - stride length
4264+
* @param strideX - stride length
42654265
* @returns maximum value
42664266
*
42674267
* @example

0 commit comments

Comments
 (0)