Skip to content

Commit 8cea287

Browse files
committed
docs: fix return annotation values
--- 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 e71cea1 commit 8cea287

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/array/complex64/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
* // returns <Complex64Array>
6060
*
6161
* var len = arr.length;
62-
* // returns 1
62+
* // returns 2
6363
*
6464
* @example
6565
* var ArrayBuffer = require( '@stdlib/array/buffer' );
@@ -70,7 +70,7 @@
7070
* // returns <Complex64Array>
7171
*
7272
* var len = arr.length;
73-
* // returns 2
73+
* // returns 1
7474
*
7575
* @example
7676
* var ArrayBuffer = require( '@stdlib/array/buffer' );

lib/node_modules/@stdlib/blas/base/sdsdot/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* var y = new Float32Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
3232
*
3333
* var z = sdsdot( x.length, 0.0, x, 1, y, 1 );
34-
* // returns -12.0
34+
* // returns -5.0
3535
*
3636
* @example
3737
* var Float32Array = require( '@stdlib/array/float32' );
@@ -41,7 +41,7 @@
4141
* var y = new Float32Array( [ 2.0, 6.0, -1.0, -4.0, 8.0 ] );
4242
*
4343
* var z = sdsdot.ndarray( x.length, 0.0, x, 1, 0, y, 1, 0 );
44-
* // returns -12.0
44+
* // returns -5.0
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/constants/float16/ninf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var FLOAT16_NINF = require( '@stdlib/constants/float16/ninf' );
29-
* // returns -infinity
29+
* // returns -Infinity
3030
*/
3131

3232
// MODULES //

lib/node_modules/@stdlib/math/base/special/kernel-sin/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* // returns ~0.5
3434
*
3535
* v = kernelSin( 0.619, 9.279e-18 );
36-
* // returns ~0.581
36+
* // returns ~0.58
3737
*
3838
* v = kernelSin( NaN, 0.0 );
3939
* // returns NaN

lib/node_modules/@stdlib/simulate/iter/cosine-wave/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* // returns 0.0
4040
*
4141
* v = iter.next().value;
42-
* // returns 1.0
42+
* // returns -1.0
4343
*
4444
* // ...
4545
*/

0 commit comments

Comments
 (0)