Skip to content

Commit 8a71ed3

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
docs: update jsdoc
--- 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 20317ee commit 8a71ed3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/wasm/zscal/lib/module.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ inherits( Module, WasmModule );
127127
* @param {PositiveInteger} N - number of indexed elements
128128
* @param {NonNegativeInteger} aptr - scalar constant pointer (i.e., byte offset)
129129
* @param {NonNegativeInteger} xptr - input array pointer (i.e., byte offset)
130-
* @param {integer} strideX - `x` stride length
130+
* @param {integer} strideX - stride length for `x`
131131
* @returns {NonNegativeInteger} input array pointer (i.e., byte offset)
132132
*
133133
* @example
@@ -202,7 +202,7 @@ setReadOnly( Module.prototype, 'main', function zscal( N, aptr, xptr, strideX )
202202
* @param {PositiveInteger} N - number of indexed elements
203203
* @param {NonNegativeInteger} aptr - scalar constant pointer (i.e., byte offset)
204204
* @param {NonNegativeInteger} xptr - input array pointer (i.e., byte offset)
205-
* @param {integer} strideX - `x` stride length
205+
* @param {integer} strideX - stride length for `x`
206206
* @param {NonNegativeInteger} offsetX - starting `x` index
207207
* @returns {NonNegativeInteger} input array pointer (i.e., byte offset)
208208
*

lib/node_modules/@stdlib/blas/base/wasm/zscal/lib/routine.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ inherits( Routine, Module );
105105
* @param {PositiveInteger} N - number of indexed elements
106106
* @param {Complex128} alpha - scalar
107107
* @param {Complex128Array} x - input array
108-
* @param {integer} strideX - `x` stride length
108+
* @param {integer} strideX - stride length for `x`
109109
* @returns {Complex128Array} input array
110110
*
111111
* @example
@@ -142,7 +142,7 @@ setReadOnly( Routine.prototype, 'main', function zscal( N, alpha, x, strideX ) {
142142
* @param {PositiveInteger} N - number of indexed elements
143143
* @param {Complex128} alpha - scalar
144144
* @param {Complex128Array} x - input array
145-
* @param {integer} strideX - `x` stride length
145+
* @param {integer} strideX - stride length for `x`
146146
* @param {NonNegativeInteger} offsetX - starting index for `x`
147147
* @returns {Complex128Array} input array
148148
*

0 commit comments

Comments
 (0)