Skip to content

Commit 81ce090

Browse files
committed
docs: update comment
--- 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 af25b04 commit 81ce090

File tree

3 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-to-struct/lib

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-to-struct/lib/4d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function unary4d( fcn, arrays, views, strides, isRowMajor, strategy, opts ) {
211211

212212
// Note on variable naming convention: S#, dv#, i# where # corresponds to the loop number, with `0` being the innermost loop...
213213

214-
// Resolve the output ndarray and associated shape:
214+
// Resolve the output shape:
215215
sh = arrays[ 1 ].shape;
216216

217217
// Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...

lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-to-struct/lib/5d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function unary5d( fcn, arrays, views, strides, isRowMajor, strategy, opts ) {
214214

215215
// Note on variable naming convention: S#, dv#, i# where # corresponds to the loop number, with `0` being the innermost loop...
216216

217-
// Resolve the output ndarray and associated shape:
217+
// Resolve the output shape:
218218
sh = arrays[ 1 ].shape;
219219

220220
// Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...

lib/node_modules/@stdlib/ndarray/base/unary-reduce-strided1d-to-struct/lib/6d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ function unary6d( fcn, arrays, views, strides, isRowMajor, strategy, opts ) {
219219

220220
// Note on variable naming convention: S#, dv#, i# where # corresponds to the loop number, with `0` being the innermost loop...
221221

222-
// Resolve the output ndarray and associated shape:
222+
// Resolve the output shape:
223223
sh = arrays[ 1 ].shape;
224224

225225
// Extract loop variables for purposes of loop interchange: dimensions and loop offset (pointer) increments...

0 commit comments

Comments
 (0)