Skip to content

Commit 643a522

Browse files
committed
docs: update parameter descriptions
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent abeb2c9 commit 643a522

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/strided/max-by/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var accessors = require( './accessors.js' );
3232
* Computes the maximum value of a strided array via a callback function.
3333
*
3434
* @param {PositiveInteger} N - number of indexed elements
35-
* @param {Collection} x - input array/collection
35+
* @param {Collection} x - input array
3636
* @param {integer} strideX - index increment
3737
* @param {NonNegativeInteger} offsetX - starting index
3838
* @param {Callback} clbk - callback

lib/node_modules/@stdlib/stats/strided/min-by/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var accessors = require( './accessors.js' );
3232
* Computes the minimum value of a strided array via a callback function.
3333
*
3434
* @param {PositiveInteger} N - number of indexed elements
35-
* @param {Collection} x - input array/collection
35+
* @param {Collection} x - input array
3636
* @param {integer} strideX - index increment
3737
* @param {NonNegativeInteger} offsetX - starting index
3838
* @param {Callback} clbk - callback

lib/node_modules/@stdlib/stats/strided/nanmax-by/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
* Computes the maximum value of a strided array via a callback function, ignoring `NaN` values.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {Collection} x - input array/collection
33+
* @param {Collection} x - input array
3434
* @param {integer} strideX - index increment
3535
* @param {Callback} clbk - callback
3636
* @param {*} [thisArg] - execution context

lib/node_modules/@stdlib/stats/strided/nanmax-by/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var accessors = require( './accessors.js' );
3232
* Computes the maximum value of a strided array via a callback function, ignoring `NaN` values.
3333
*
3434
* @param {PositiveInteger} N - number of indexed elements
35-
* @param {Collection} x - input array/collection
35+
* @param {Collection} x - input array
3636
* @param {integer} strideX - index increment
3737
* @param {NonNegativeInteger} offsetX - starting index
3838
* @param {Callback} clbk - callback

lib/node_modules/@stdlib/stats/strided/nanmin-by/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
* Computes the minimum value of a strided array via a callback function, ignoring `NaN` values.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {Collection} x - input array/collection
33+
* @param {Collection} x - input array
3434
* @param {integer} strideX - index increment
3535
* @param {Callback} clbk - callback
3636
* @param {*} [thisArg] - execution context

lib/node_modules/@stdlib/stats/strided/nanmin-by/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var accessors = require( './accessors.js' );
3232
* Computes the minimum value of a strided array via a callback function, ignoring `NaN` values.
3333
*
3434
* @param {PositiveInteger} N - number of indexed elements
35-
* @param {Collection} x - input array/collection
35+
* @param {Collection} x - input array
3636
* @param {integer} strideX - index increment
3737
* @param {NonNegativeInteger} offsetX - starting index
3838
* @param {Callback} clbk - callback

0 commit comments

Comments
 (0)