Skip to content

Commit 5d42b3e

Browse files
committed
fix: examples
1 parent 23ba963 commit 5d42b3e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ type InOutShapes = [
9494
* var bquaternary4d = require( '@stdlib/array/base/broadcasted-quaternary4d' );
9595
*
9696
* var shapes = [
97+
* [ 1, 3, 1, 1 ],
9798
* [ 1, 1, 3, 1 ],
98-
* [ 3, 1, 1, 1 ],
9999
* [ 1, 1, 1, 3 ],
100-
* [ 1, 3, 1, 1 ],
101-
* [ 3, 3, 3, 3 ]
100+
* [ 1, 1, 1, 1 ],
101+
* [ 1, 3, 3, 3 ]
102102
* ];
103103
*
104104
* var x = ones4d( shapes[ 0 ] );

lib/node_modules/@stdlib/array/base/broadcasted-quaternary4d/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
* var bquaternary4d = require( '@stdlib/array/base/broadcasted-quaternary4d' );
3131
*
3232
* var shapes = [
33+
* [ 1, 3, 1, 1 ],
3334
* [ 1, 1, 3, 1 ],
34-
* [ 3, 1, 1, 1 ],
3535
* [ 1, 1, 1, 3 ],
36-
* [ 1, 3, 1, 1 ],
37-
* [ 3, 3, 3, 3 ]
36+
* [ 1, 1, 1, 1 ],
37+
* [ 1, 3, 3, 3 ]
3838
* ];
3939
*
4040
* var x = ones4d( shapes[ 0 ] );

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
4040
* var bquaternary4d = require( '@stdlib/array/base/broadcasted-quaternary4d' );
4141
*
4242
* var shapes = [
43+
* [ 1, 3, 1, 1 ],
4344
* [ 1, 1, 3, 1 ],
44-
* [ 3, 1, 1, 1 ],
4545
* [ 1, 1, 1, 3 ],
46-
* [ 1, 3, 1, 1 ],
47-
* [ 3, 3, 3, 3 ]
46+
* [ 1, 1, 1, 1 ],
47+
* [ 1, 3, 3, 3 ]
4848
* ];
4949
*
5050
* var x = ones4d( shapes[ 0 ] );

0 commit comments

Comments
 (0)