Skip to content

Commit 1d7a2df

Browse files
authored
docs: update namespace TypeScript declarations
PR-URL: #4656 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 114115a commit 1d7a2df

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ interface Namespace {
13961396
*
13971397
* @param N - number of indexed elements
13981398
* @param x - input array
1399-
* @param stride - stride length
1399+
* @param strideX - stride length
14001400
* @returns sum
14011401
*
14021402
* @example
@@ -1422,7 +1422,7 @@ interface Namespace {
14221422
*
14231423
* @param N - number of indexed elements
14241424
* @param x - input array
1425-
* @param stride - stride length
1425+
* @param strideX - stride length
14261426
* @returns sum
14271427
*
14281428
* @example
@@ -1835,7 +1835,7 @@ interface Namespace {
18351835
*
18361836
* @param N - number of indexed elements
18371837
* @param x - input array
1838-
* @param stride - stride length
1838+
* @param strideX - stride length
18391839
* @returns sum
18401840
*
18411841
* @example
@@ -1857,7 +1857,7 @@ interface Namespace {
18571857
*
18581858
* @param N - number of indexed elements
18591859
* @param x - input array
1860-
* @param stride - stride length
1860+
* @param strideX - stride length
18611861
* @returns sum
18621862
*
18631863
* @example
@@ -1879,7 +1879,7 @@ interface Namespace {
18791879
*
18801880
* @param N - number of indexed elements
18811881
* @param x - input array
1882-
* @param stride - stride length
1882+
* @param strideX - stride length
18831883
* @returns sum
18841884
*
18851885
* @example
@@ -1901,7 +1901,7 @@ interface Namespace {
19011901
*
19021902
* @param N - number of indexed elements
19031903
* @param x - input array
1904-
* @param stride - stride length
1904+
* @param strideX - stride length
19051905
* @returns sum
19061906
*
19071907
* @example
@@ -1923,7 +1923,7 @@ interface Namespace {
19231923
*
19241924
* @param N - number of indexed elements
19251925
* @param x - input array
1926-
* @param stride - stride length
1926+
* @param strideX - stride length
19271927
* @returns sum
19281928
*
19291929
* @example

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ interface Namespace {
913913
*
914914
* @param N - number of indexed elements
915915
* @param x - input array
916-
* @param stride - stride length
916+
* @param strideX - stride length
917917
* @returns arithmetic mean
918918
*
919919
* @example
@@ -2295,7 +2295,7 @@ interface Namespace {
22952295
* @param N - number of indexed elements
22962296
* @param correction - degrees of freedom adjustment
22972297
* @param x - input array
2298-
* @param stride - stride length
2298+
* @param strideX - stride length
22992299
* @returns standard deviation
23002300
*
23012301
* @example
@@ -2349,7 +2349,7 @@ interface Namespace {
23492349
* @param N - number of indexed elements
23502350
* @param correction - degrees of freedom adjustment
23512351
* @param x - input array
2352-
* @param stride - stride length
2352+
* @param strideX - stride length
23532353
* @returns standard deviation
23542354
*
23552355
* @example
@@ -2376,7 +2376,7 @@ interface Namespace {
23762376
* @param N - number of indexed elements
23772377
* @param correction - degrees of freedom adjustment
23782378
* @param x - input array
2379-
* @param stride - stride length
2379+
* @param strideX - stride length
23802380
* @returns standard deviation
23812381
*
23822382
* @example
@@ -2403,23 +2403,23 @@ interface Namespace {
24032403
* @param N - number of indexed elements
24042404
* @param correction - degrees of freedom adjustment
24052405
* @param x - input array
2406-
* @param stride - stride length
2406+
* @param strideX - stride length
24072407
* @returns standard deviation
24082408
*
24092409
* @example
24102410
* var Float64Array = require( '@stdlib/array/float64' );
24112411
*
24122412
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
24132413
*
2414-
* var v = ns.dstdevyc( x.length, 1, x, 1 );
2414+
* var v = ns.dstdevyc( x.length, 1.0, x, 1 );
24152415
* // returns ~2.0817
24162416
*
24172417
* @example
24182418
* var Float64Array = require( '@stdlib/array/float64' );
24192419
*
24202420
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
24212421
*
2422-
* var v = ns.dstdevyc.ndarray( x.length, 1, x, 1, 0 );
2422+
* var v = ns.dstdevyc.ndarray( x.length, 1.0, x, 1, 0 );
24232423
* // returns ~2.0817
24242424
*/
24252425
dstdevyc: typeof dstdevyc;

0 commit comments

Comments
 (0)