Skip to content

Commit 0f499c6

Browse files
committed
fix: apply suggestions from code review
--- 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 e1c0fa1 commit 0f499c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/4d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ function nullary4d( fcn, arrays, views, shape, stridesX, isRowMajor, strategyX,
223223
setViewOffsets( views, iv );
224224
v[ 0 ] = strategyX.input( views[ 0 ] );
225225
fcn( v, opts );
226-
strategyX.input( views[ 0 ] );
226+
strategyX.output( views[ 0 ] );
227227
incrementOffsets( iv, dv0 );
228228
}
229229
incrementOffsets( iv, dv1 );

lib/node_modules/@stdlib/ndarray/base/nullary-strided1d/lib/9d_blocked.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ function blockednullary9d( fcn, arrays, views, shape, stridesX, strategyX, opts
366366
setViewOffsets( views, iv );
367367
v[ 0 ] = strategyX.input( views[ 0 ] );
368368
fcn( v, opts );
369-
strategyX.input( views[ 0 ] );
369+
strategyX.output( views[ 0 ] );
370370
incrementOffsets( iv, dv0 );
371371
}
372372
incrementOffsets( iv, dv1 );

0 commit comments

Comments
 (0)