Skip to content

Commit c3c8813

Browse files
committed
fix: bugs in main
--- 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 8721f7b commit c3c8813

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/ndarray/base/some/lib

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/ndarray/base/some/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,12 +292,12 @@ function some( arrays ) {
292292
}
293293
// Fall-through to linear view iteration without regard for how data is stored in memory (i.e., take the slow path)...
294294
if ( x.accessorProtocol ) {
295-
return accessorsomend( x );
295+
return accessorsomend( x, N );
296296
}
297297
if ( isCmplx ) {
298-
return complexsomend( x );
298+
return complexsomend( x, N );
299299
}
300-
return somend( x );
300+
return somend( x, N );
301301
}
302302

303303

0 commit comments

Comments
 (0)