Skip to content

Commit aaee349

Browse files
committed
docs: round return annotation values correctly
--- 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 cedc9bb commit aaee349

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/wasm/dznrm2/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* // Perform operation:
3434
* var out = dznrm2.main( x.length, x, 1 );
35-
* // returns ~9.53
35+
* // returns ~9.54
3636
*
3737
* @example
3838
* var Complex128Array = require( '@stdlib/array/complex128' );
@@ -43,7 +43,7 @@
4343
*
4444
* // Perform operation:
4545
* var out = dznrm2.ndarray( x.length, x, 1, 0 );
46-
* // returns ~9.53
46+
* // returns ~9.54
4747
*
4848
* @example
4949
* var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/scnrm2/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*
3333
* // Perform operation:
3434
* var out = scnrm2.main( x.length, x, 1 );
35-
* // returns ~9.53
35+
* // returns ~9.54
3636
*
3737
* @example
3838
* var Complex64Array = require( '@stdlib/array/complex64' );
@@ -43,7 +43,7 @@
4343
*
4444
* // Perform operation:
4545
* var out = scnrm2.ndarray( x.length, x, 1, 0 );
46-
* // returns ~9.53
46+
* // returns ~9.54
4747
*
4848
* @example
4949
* var Memory = require( '@stdlib/wasm/memory' );

0 commit comments

Comments
 (0)