Skip to content

Commit 433a405

Browse files
committed
chore: change datatype
--- 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 dfb7bc9 commit 433a405

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/cher/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' );
4040
* @param {integer} strideA1 - stride of the first dimension of `A`
4141
* @param {integer} strideA2 - stride of the second dimension of `A`
4242
* @param {NonNegativeInteger} offsetA - starting index for `A`
43-
* @returns {Float64Array} `A`
43+
* @returns {Complex64Array} `A`
4444
*
4545
* @example
4646
* var Complex64Array = require( '@stdlib/array/complex64' );

lib/node_modules/@stdlib/blas/base/cher/lib/cher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var ndarray = require( './ndarray.js' );
4747
* @throws {RangeError} third argument must be a nonnegative integer
4848
* @throws {RangeError} sixth argument must be non-zero
4949
* @throws {RangeError} eighth argument must be greater than or equal to max(1,N)
50-
* @returns {Float64Array} `A`
50+
* @returns {Complex64Array} `A`
5151
*
5252
* @example
5353
* var Complex64Array = require( '@stdlib/array/complex64' );

lib/node_modules/@stdlib/blas/base/cher/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var base = require( './base.js' );
4545
* @throws {RangeError} fifth argument must be non-zero
4646
* @throws {RangeError} eighth argument must be non-zero
4747
* @throws {RangeError} ninth argument must be non-zero
48-
* @returns {Float64Array} `A`
48+
* @returns {Complex64Array} `A`
4949
*
5050
* @example
5151
* var Complex64Array = require( '@stdlib/array/complex64' );

0 commit comments

Comments
 (0)