Skip to content

Commit e8e280b

Browse files
fix: CI errors
1 parent c630a19 commit e8e280b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ var shapes = [
6464
];
6565

6666
bquinary3d( [ x, y, z, w, v, out ], shapes, add );
67-
// out => [ [ [ 12.0, 13.0 ], [ 13.0, 14.0 ] ] ]
67+
// out => [ [ [ 12, 14 ], [ 12, 14 ] ], [ [ 12, 14 ], [ 12, 14 ] ] ]
6868
```
6969

7070
The function accepts the following arguments:

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
--------
1919
> function fcn( x, y, z, w, v ) { return x + y + z + w + v; };
2020
> var x = [ 1.0, 2.0 ];
21-
> var y = [ [ [ 3.0 ], [ 4.0 ] ] ];
22-
> var z = [ [ [ 1.0 ] ] ];
21+
> var y = [ [ 3.0 ], [ 4.0 ] ];
22+
> var z = [ 1.0 ];
2323
> var w = [ 2.0 ];
2424
> var v = [ 1.0 ];
2525
> var out = [ [ [ 0.0, 0.0 ], [ 0.0, 0.0 ] ] ];
26-
> var shapes = [ [ 2 ], [ 2, 1, 1 ] [ 1, 2, 2 ], [ 1 ], [ 1 ], [ 1, 2, 2 ] ];
26+
> var shapes = [ [ 2 ], [ 2, 1 ] [ 1 ], [ 1 ], [ 1 ], [ 1, 2, 2 ] ];
2727
> {{alias}}( [ x, y, z, w, v, out ], shapes, fcn );
2828
> out
2929
[ [ [ 8.0, 9.0 ], [ 9.0, 10.0 ] ] ]

0 commit comments

Comments
 (0)