Skip to content

Commit d4504fc

Browse files
committed
Fix return annotations
1 parent 61618a9 commit d4504fc

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

lib/node_modules/@stdlib/math/base/complex/multiply/lib/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ var mul = require( './cmul.js' );
3636
* @returns {(Array|TypedArray|Object)} real and imaginary components
3737
*
3838
* @example
39+
* var out = new Array( 2 );
40+
*
3941
* var v = cmul( out, 5.0, 3.0, -2.0, 1.0 );
4042
* // returns [ -13.0, -1.0 ]
4143
*

lib/node_modules/@stdlib/stats/base/dists/cauchy/logcdf/lib/logcdf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ var ONE_OVER_PI = 0.3183098861837907;
4646
*
4747
* @example
4848
* var y = logcdf( 1.0, 0.0, 2.0 );
49-
* // returns ~-0.434
49+
* // returns ~-0.435
5050
*
5151
* @example
5252
* var y = logcdf( 1.0, 3.0, 2.0 );
53-
* // returns -1.386
53+
* // returns ~-1.386
5454
*
5555
* @example
5656
* var y = logcdf( NaN, 0.0, 2.0 );

lib/node_modules/@stdlib/utils/unshift/lib/unshift_array.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @example
3232
* var arr = [ 1.0, 2.0, 3.0, 4.0, 5.0 ];
3333
*
34-
* arr = unshift( arr, 6.0, 7.0 );
34+
* arr = unshift( arr, [ 6.0, 7.0 ] );
3535
* // returns [ 6.0, 7.0, 1.0, 2.0, 3.0, 4.0, 5.0 ]
3636
*/
3737
function unshift( arr, items ) {

0 commit comments

Comments
 (0)