Skip to content

Commit e712640

Browse files
committed
docs: fix offset types
1 parent b5de107 commit e712640

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/lapack/base/dlacpy/lib/base.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ var min = require( '@stdlib/math/base/special/fast/min' );
3838
* @param {Float64Array} A - input matrix
3939
* @param {integer} strideA1 - stride of the first dimension of `A`
4040
* @param {integer} strideA2 - stride of the second dimension of `A`
41-
* @param {PositiveInteger} offsetA - starting index for `A`
41+
* @param {NonNegativeInteger} offsetA - starting index for `A`
4242
* @param {Float64Array} B - output matrix
4343
* @param {integer} strideB1 - stride of the first dimension of `B`
4444
* @param {integer} strideB2 - stride of the second dimension of `B`
45-
* @param {PositiveInteger} offsetB - starting index for `B`
45+
* @param {NonNegativeInteger} offsetB - starting index for `B`
4646
* @returns {Float64Array} `B`
4747
*
4848
* @example
@@ -173,11 +173,11 @@ function copyAll( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, o
173173
* @param {Float64Array} A - input matrix
174174
* @param {integer} strideA1 - stride of the first dimension of `A`
175175
* @param {integer} strideA2 - stride of the second dimension of `A`
176-
* @param {PositiveInteger} offsetA - starting index for `A`
176+
* @param {NonNegativeInteger} offsetA - starting index for `A`
177177
* @param {Float64Array} B - output matrix
178178
* @param {integer} strideB1 - stride of the first dimension of `B`
179179
* @param {integer} strideB2 - stride of the second dimension of `B`
180-
* @param {PositiveInteger} offsetB - starting index for `B`
180+
* @param {NonNegativeInteger} offsetB - starting index for `B`
181181
* @returns {Float64Array} `B`
182182
*
183183
* @example
@@ -289,11 +289,11 @@ function copyUpper( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
289289
* @param {Float64Array} A - input matrix
290290
* @param {integer} strideA1 - stride of the first dimension of `A`
291291
* @param {integer} strideA2 - stride of the second dimension of `A`
292-
* @param {PositiveInteger} offsetA - starting index for `A`
292+
* @param {NonNegativeInteger} offsetA - starting index for `A`
293293
* @param {Float64Array} B - output matrix
294294
* @param {integer} strideB1 - stride of the first dimension of `B`
295295
* @param {integer} strideB2 - stride of the second dimension of `B`
296-
* @param {PositiveInteger} offsetB - starting index for `B`
296+
* @param {NonNegativeInteger} offsetB - starting index for `B`
297297
* @returns {Float64Array} `B`
298298
*
299299
* @example
@@ -409,11 +409,11 @@ function copyLower( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
409409
* @param {Float64Array} A - input matrix
410410
* @param {integer} strideA1 - stride of the first dimension of `A`
411411
* @param {integer} strideA2 - stride of the second dimension of `A`
412-
* @param {PositiveInteger} offsetA - starting index for `A`
412+
* @param {NonNegativeInteger} offsetA - starting index for `A`
413413
* @param {Float64Array} B - output matrix
414414
* @param {integer} strideB1 - stride of the first dimension of `B`
415415
* @param {integer} strideB2 - stride of the second dimension of `B`
416-
* @param {PositiveInteger} offsetB - starting index for `B`
416+
* @param {NonNegativeInteger} offsetB - starting index for `B`
417417
* @returns {Float64Array} `B`
418418
*
419419
* @example

lib/node_modules/@stdlib/lapack/base/dlacpy/lib/ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ var base = require( './base.js' );
3434
* @param {Float64Array} A - input matrix
3535
* @param {integer} strideA1 - stride of the first dimension of `A`
3636
* @param {integer} strideA2 - stride of the second dimension of `A`
37-
* @param {PositiveInteger} offsetA - starting index for `A`
37+
* @param {NonNegativeInteger} offsetA - starting index for `A`
3838
* @param {Float64Array} B - output matrix
3939
* @param {integer} strideB1 - stride of the first dimension of `B`
4040
* @param {integer} strideB2 - stride of the second dimension of `B`
41-
* @param {PositiveInteger} offsetB - starting index for `B`
41+
* @param {NonNegativeInteger} offsetB - starting index for `B`
4242
* @returns {Float64Array} `B`
4343
*
4444
* @example

0 commit comments

Comments
 (0)