Skip to content

Commit 8366f95

Browse files
committed
docs: update parameter description
1 parent 394d35c commit 8366f95

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/gunitspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ gunitspace( x.length, 3.0, x, 1 );
4444
The function has the following parameters:
4545

4646
- **N**: number of indexed elements.
47-
- **start**: start of interval.
47+
- **start**: starting value.
4848
- **x**: input array.
4949
- **strideX**: stride length.
5050

lib/node_modules/@stdlib/blas/ext/base/gunitspace/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Number of indexed elements.
1818

1919
start: number
20-
Start of interval.
20+
Starting value.
2121

2222
x: ArrayLikeObject
2323
Input array.
@@ -65,7 +65,7 @@
6565
Number of indexed elements.
6666

6767
start: number
68-
Start of interval.
68+
Starting value.
6969

7070
x: ArrayLikeObject
7171
Input array.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ interface Routine {
3535
* Fills a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.
3636
*
3737
* @param N - number of indexed elements
38-
* @param start - start of interval
38+
* @param start - starting value
3939
* @param x - input array
4040
* @param strideX - stride length
4141
* @returns input array
@@ -52,7 +52,7 @@ interface Routine {
5252
* Fills a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value using alternative indexing semantics.
5353
*
5454
* @param N - number of indexed elements
55-
* @param start - start of interval
55+
* @param start - starting value
5656
* @param x - input array
5757
* @param strideX - stride length
5858
* @param offsetX - starting index
@@ -71,7 +71,7 @@ interface Routine {
7171
* Fills a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.
7272
*
7373
* @param N - number of indexed elements
74-
* @param start - start of interval
74+
* @param start - starting value
7575
* @param x - input array
7676
* @param strideX - stride length
7777
* @returns input array

lib/node_modules/@stdlib/blas/ext/base/gunitspace/lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @private
2727
* @param {PositiveInteger} N - number of indexed elements
28-
* @param {number} start - start of interval
28+
* @param {number} start - starting value
2929
* @param {Object} x - input array object
3030
* @param {Collection} x.data - input array data
3131
* @param {Array<Function>} x.accessors - array element accessors

lib/node_modules/@stdlib/blas/ext/base/gunitspace/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var ndarray = require( './ndarray.js' );
3030
* Fills a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} start - start of interval
33+
* @param {number} start - starting value
3434
* @param {Collection} x - input array
3535
* @param {integer} strideX - stride length
3636
* @returns {Collection} input array

lib/node_modules/@stdlib/blas/ext/base/gunitspace/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var accessors = require( './accessors.js' );
3030
* Fills a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} start - start of interval
33+
* @param {number} start - starting value
3434
* @param {Collection} x - input array
3535
* @param {integer} strideX - stride length
3636
* @param {NonNegativeInteger} offsetX - starting index

0 commit comments

Comments
 (0)