Skip to content

Commit 54b804b

Browse files
committed
chore: fix spacing
--- 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: 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 186f912 commit 54b804b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/stats/strided/midrange-by/lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
5454
* var v = midrangeBy( x.length, arraylike2object( x ), 1, 0, accessor );
5555
* // returns -1.0
5656
*/
57-
function midrangeBy( N, x, strideX, offsetX, clbk, thisArg) {
57+
function midrangeBy( N, x, strideX, offsetX, clbk, thisArg ) {
5858
var xbuf;
5959
var get;
6060
var max;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var mskmidrange = require( '@stdlib/stats/strided/mskmidrange' );
4040

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

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

4545
```javascript
4646
var x = [ 1.0, -2.0, 4.0, 2.0 ];

0 commit comments

Comments
 (0)