Skip to content

Commit c29fb41

Browse files
committed
fix: apply suggestions from code review
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent a981af5 commit c29fb41

11 files changed

Lines changed: 20 additions & 20 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/dzero-to/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dzeroTo
2222

23-
> Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
23+
> Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var dzeroTo = require( '@stdlib/blas/ext/base/dzero-to' );
3232

3333
#### dzeroTo( N, x, strideX )
3434

35-
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
35+
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
3636

3737
```javascript
3838
var Float64Array = require( '@stdlib/array/float64' );
@@ -78,7 +78,7 @@ dzeroTo( 3, x1, 2 );
7878

7979
#### dzeroTo.ndarray( N, x, strideX, offsetX )
8080

81-
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero` using alternative indexing semantics.
81+
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero using alternative indexing semantics.
8282

8383
```javascript
8484
var Float64Array = require( '@stdlib/array/float64' );
@@ -169,7 +169,7 @@ console.log( x );
169169

170170
#### stdlib_strided_dzero_to( N, \*X, strideX )
171171

172-
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
172+
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
173173

174174
```c
175175
double x[] = { 0.0, 0.0, 0.0, 0.0 };
@@ -189,7 +189,7 @@ void API_SUFFIX(stdlib_strided_dzero_to)( const CBLAS_INT N, double *X, const CB
189189

190190
#### stdlib_strided_dzero_to_ndarray( N, \*X, strideX, offsetX )
191191

192-
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero` using alternative indexing semantics.
192+
Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero using alternative indexing semantics.
193193

194194
```c
195195
double x[] = { 0.0, 0.0, 0.0, 0.0 };

lib/node_modules/@stdlib/blas/ext/base/dzero-to/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( N, x, strideX )
33
Fills a double-precision floating-point strided array with linearly spaced
4-
numeric elements which increment by `1` starting from `zero`.
4+
numeric elements which increment by `1` starting from zero.
55

66
The `N` and stride parameters determine which elements in the strided array
77
are accessed at runtime.
@@ -50,7 +50,7 @@
5050

5151
{{alias}}.ndarray( N, x, strideX, offsetX )
5252
Fills a double-precision floating-point strided array with linearly spaced
53-
numeric elements which increment by `1` starting from `zero` using
53+
numeric elements which increment by `1` starting from zero using
5454
alternative indexing semantics.
5555

5656
While typed array views mandate a view offset based on the underlying

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
interface Routine {
2525
/**
26-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
26+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
2727
*
2828
* @param N - number of indexed elements
2929
* @param x - input array
@@ -41,7 +41,7 @@ interface Routine {
4141
( N: number, x: Float64Array, strideX: number ): Float64Array;
4242

4343
/**
44-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero` using alternative indexing semantics.
44+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero using alternative indexing semantics.
4545
*
4646
* @param N - number of indexed elements
4747
* @param x - input array
@@ -61,7 +61,7 @@ interface Routine {
6161
}
6262

6363
/**
64-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
64+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
6565
*
6666
* @param N - number of indexed elements
6767
* @param x - input array

lib/node_modules/@stdlib/blas/ext/base/dzero-to/include/stdlib/blas/ext/base/dzero_to.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ extern "C" {
2929
#endif
3030

3131
/**
32-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
32+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
3333
*/
3434
void API_SUFFIX(stdlib_strided_dzero_to)( const CBLAS_INT N, double *X, const CBLAS_INT strideX );
3535

3636
/**
37-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero` using alternative indexing semantics.
37+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero using alternative indexing semantics.
3838
*/
3939
void API_SUFFIX(stdlib_strided_dzero_to_ndarray)( const CBLAS_INT N, double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
4040

lib/node_modules/@stdlib/blas/ext/base/dzero-to/lib/dzero_to.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' );
2727
// MAIN //
2828

2929
/**
30-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
30+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
3333
* @param {Float64Array} x - input array

lib/node_modules/@stdlib/blas/ext/base/dzero-to/lib/dzero_to.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
29+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
3030
*
3131
* @param {PositiveInteger} N - number of indexed elements
3232
* @param {Float64Array} x - input array

lib/node_modules/@stdlib/blas/ext/base/dzero-to/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
22+
* Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
2323
*
2424
* @module @stdlib/blas/ext/base/dzero-to
2525
*

lib/node_modules/@stdlib/blas/ext/base/dzero-to/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MAIN //
2222

2323
/**
24-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
24+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
2525
*
2626
* @param {PositiveInteger} N - number of indexed elements
2727
* @param {Float64Array} x - input array

lib/node_modules/@stdlib/blas/ext/base/dzero-to/lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.
29+
* Fills a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.
3030
*
3131
* @param {PositiveInteger} N - number of indexed elements
3232
* @param {Float64Array} x - input array

lib/node_modules/@stdlib/blas/ext/base/dzero-to/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/ext/base/dzero-to",
33
"version": "0.0.0",
4-
"description": "Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from `zero`.",
4+
"description": "Fill a double-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)