Skip to content

Commit 32672ca

Browse files
committed
docs: minor clean-up
--- 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: passed - 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 bb1f237 commit 32672ca

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/dmskrange/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dmskrange
2222

23-
> Calculate the [range][range] of one-dimensional double-precision floating-point ndarray according to a mask.
23+
> Calculate the [range][range] of a one-dimensional double-precision floating-point ndarray according to a mask.
2424
2525
<section class="intro">
2626

lib/node_modules/@stdlib/stats/base/ndarray/nanmskmax/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# nanmskmax
2222

23-
> Calculate the maximum value of a one-dimensional ndarray according to a mask, ignoring NaN values.
23+
> Calculate the maximum value of a one-dimensional ndarray according to a mask, ignoring `NaN` values.
2424
2525
<section class="intro">
2626

lib/node_modules/@stdlib/stats/base/ndarray/smskrange/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var uniform = require( '@stdlib/random/array/uniform' );
8888
var bernoulli = require( '@stdlib/random/array/bernoulli' );
8989
var ndarray = require( '@stdlib/ndarray/base/ctor' );
9090
var ndarray2array = require( '@stdlib/ndarray/to-array' );
91-
var mskrange = require( '@stdlib/stats/base/ndarray/mskrange' );
91+
var smskrange = require( '@stdlib/stats/base/ndarray/smskrange' );
9292

9393
var xbuf = uniform( 10, -50.0, 50.0, {
9494
'dtype': 'float32'
@@ -102,7 +102,7 @@ var maskbuf = bernoulli( xbuf.length, 0.2, {
102102
var mask = new ndarray( 'uint8', maskbuf, [ maskbuf.length ], [ 1 ], 0, 'row-major' );
103103
console.log( ndarray2array( mask ) );
104104

105-
var v = mskrange( [ x, mask ] );
105+
var v = smskrange( [ x, mask ] );
106106
console.log( v );
107107
```
108108

lib/node_modules/@stdlib/stats/base/ndarray/snanmskmax/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( arrays )
33
Computes the maximum value of a one-dimensional single-precision floating-
4-
point ndarray according to a mask.
4+
point ndarray according to a mask, ignoring `NaN` values.
55

66
If provided an empty ndarray or a mask with all elements set to `1`, the
77
function returns `NaN`.

lib/node_modules/@stdlib/stats/nanmin-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The function has the following parameters:
6060
The invoked callback is provided three arguments:
6161

6262
- **value**: current array element.
63-
- **idx**: current array element index.
63+
- **index**: current array element index.
6464
- **array**: input ndarray.
6565

6666
To set the callback execution context, provide a `thisArg`.

0 commit comments

Comments
 (0)