Skip to content

Commit eef2372

Browse files
chore: update main.js examples
1 parent 998cefb commit eef2372

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/base/broadcasted-quinary3d

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ type InOutShapes = [
117117
* bquinary3d( [ x, y, z, w, v, out ], shapes, add );
118118
*
119119
* console.log( out );
120-
* // => [ [ [ 5.0, 5.0 ], [ 5.0, 5.0 ], [ 5.0, 5.0 ], [ 5.0, 5.0 ] ], [ [ 5.0, 5.0 ], [ 5.0, 5.0 ] ] ]
120+
* // => [ [ [ 5, 5 ], [ 5, 5 ] ], [ [ 5, 5 ], [ 5, 5 ] ] ]
121121
*/
122122
declare function bquinary3d<T = unknown, U = unknown, V = unknown, W = unknown, X = unknown, Y = unknown>( arrays: InOutArrays<T, U, V, W, X, Y>, shapes: InOutShapes, fcn: Quinary<T, U, V, W, X, Y> ): void;
123123

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
6060
* bquinary3d( [ x, y, z, w, v, out ], shapes, add );
6161
*
6262
* console.log( out );
63-
* // => [ [ [ 5.0, 5.0 ], [ 5.0, 5.0 ], [ 5.0, 5.0 ], [ 5.0, 5.0 ] ], [ [ 5.0, 5.0 ], [ 5.0, 5.0 ] ] ]
63+
* // => [ [ [ 5, 5 ], [ 5, 5 ] ], [ [ 5, 5 ], [ 5, 5 ] ] ]
6464
*/
6565
function bquinary3d( arrays, shapes, fcn ) { // eslint-disable-line max-statements
6666
var dx0;

0 commit comments

Comments
 (0)