Skip to content

Commit 7062ec1

Browse files
committed
docs: update copy
--- 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: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - 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: na - 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: na - task: lint_license_headers status: passed ---
1 parent 17da583 commit 7062ec1

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/stats/strided/mskmax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ var v = mskmax( 4, x1, 2, mask1, 2 );
8686

8787
#### mskmax.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
8888

89-
Computes the maximum value of a strided array according to a `mask` and using alternative indexing semantics.
89+
Computes the maximum value of a strided array according to a mask and using alternative indexing semantics.
9090

9191
```javascript
9292
var x = [ 1.0, -2.0, 4.0, 2.0 ];

lib/node_modules/@stdlib/stats/strided/mskmaxabs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ var v = mskmaxabs( 4, x1, 2, mask1, 2 );
8686

8787
#### mskmaxabs.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
8888

89-
Computes the maximum absolute value of a strided array according to a `mask` and using alternative indexing semantics.
89+
Computes the maximum absolute value of a strided array according to a mask and using alternative indexing semantics.
9090

9191
```javascript
9292
var x = [ 1.0, -2.0, 4.0, 2.0 ];

lib/node_modules/@stdlib/stats/strided/mskmin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var mskmin = require( '@stdlib/stats/strided/mskmin' );
3838

3939
#### mskmin( N, x, strideX, mask, strideMask )
4040

41-
Computes the minimum value of a strided array `x` according to a `mask`.
41+
Computes the minimum value of a strided array according to a mask.
4242

4343
```javascript
4444
var x = [ 1.0, -2.0, -4.0, 2.0 ];
@@ -86,7 +86,7 @@ var v = mskmin( 4, x1, 2, mask1, 2 );
8686

8787
#### mskmin.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
8888

89-
Computes the minimum value of a strided array according to a `mask` and using alternative indexing semantics.
89+
Computes the minimum value of a strided array according to a mask and using alternative indexing semantics.
9090

9191
```javascript
9292
var x = [ 1.0, -2.0, -4.0, 2.0 ];

lib/node_modules/@stdlib/stats/strided/mskrange/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var mskrange = require( '@stdlib/stats/strided/mskrange' );
4040

4141
#### mskrange( N, x, strideX, mask, strideMask )
4242

43-
Computes the [range][range] of a strided array `x` according to a `mask`.
43+
Computes the [range][range] of a strided array according to a mask.
4444

4545
```javascript
4646
var x = [ 1.0, -2.0, 4.0, 2.0 ];
@@ -88,7 +88,7 @@ var v = mskrange( 4, x1, 2, mask1, 2 );
8888

8989
#### mskrange.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
9090

91-
Computes the [range][range] of a strided array according to a `mask` and using alternative indexing semantics.
91+
Computes the [range][range] of a strided array according to a mask and using alternative indexing semantics.
9292

9393
```javascript
9494
var x = [ 1.0, -2.0, 4.0, 2.0 ];

lib/node_modules/@stdlib/stats/strided/nanmskmax/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var nanmskmax = require( '@stdlib/stats/strided/nanmskmax' );
3838

3939
#### nanmskmax( N, x, strideX, mask, strideMask )
4040

41-
Computes the maximum value of a strided array according to a `mask`, ignoring `NaN` values.
41+
Computes the maximum value of a strided array according to a mask, ignoring `NaN` values.
4242

4343
```javascript
4444
var x = [ 1.0, -2.0, 4.0, 2.0, NaN ];
@@ -86,7 +86,7 @@ var v = nanmskmax( 5, x1, 2, mask1, 2 );
8686

8787
#### nanmskmax.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
8888

89-
Computes the maximum value of a strided array according to a `mask`, ignoring `NaN` values and using alternative indexing semantics.
89+
Computes the maximum value of a strided array according to a mask, ignoring `NaN` values and using alternative indexing semantics.
9090

9191
```javascript
9292
var x = [ 1.0, -2.0, 4.0, 2.0, NaN ];

lib/node_modules/@stdlib/stats/strided/nanmskmin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var nanmskmin = require( '@stdlib/stats/strided/nanmskmin' );
3838

3939
#### nanmskmin( N, x, strideX, mask, strideMask )
4040

41-
Computes the minimum value of a strided array according to a `mask`, ignoring `NaN` values.
41+
Computes the minimum value of a strided array according to a mask, ignoring `NaN` values.
4242

4343
```javascript
4444
var x = [ 1.0, -2.0, -4.0, 2.0, NaN ];
@@ -86,7 +86,7 @@ var v = nanmskmin( 5, x1, 2, mask1, 2 );
8686

8787
#### nanmskmin.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
8888

89-
Computes the minimum value of a strided array according to a `mask`, ignoring `NaN` values and using alternative indexing semantics.
89+
Computes the minimum value of a strided array according to a mask, ignoring `NaN` values and using alternative indexing semantics.
9090

9191
```javascript
9292
var x = [ 1.0, -2.0, -4.0, 2.0, NaN ];

lib/node_modules/@stdlib/stats/strided/nanmskrange/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var nanmskrange = require( '@stdlib/stats/strided/nanmskrange' );
4040

4141
#### nanmskrange( N, x, strideX, mask, strideMask )
4242

43-
Computes the [range][range] of a strided array `x` according to a `mask`, ignoring `NaN` values.
43+
Computes the [range][range] of a strided array according to a mask, ignoring `NaN` values.
4444

4545
```javascript
4646
var x = [ 1.0, -2.0, 4.0, 2.0, NaN, NaN ];
@@ -88,7 +88,7 @@ var v = nanmskrange( 5, x1, 2, mask1, 2 );
8888

8989
#### nanmskrange.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
9090

91-
Computes the [range][range] of a strided array according to a `mask`, ignoring `NaN` values and using alternative indexing semantics.
91+
Computes the [range][range] of a strided array according to a mask, ignoring `NaN` values and using alternative indexing semantics.
9292

9393
```javascript
9494
var x = [ 1.0, -2.0, 4.0, 2.0, NaN, NaN ];

0 commit comments

Comments
 (0)