Skip to content

Commit 998cefb

Browse files
chore: clean up
1 parent 6ebf16e commit 998cefb

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# bquinary3d
2222

23-
> Apply a quinary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] nested input arrays and assign results to elements in a three-dimensional nested output array.
23+
> Apply a quinary callback to elements in five [broadcasted][@stdlib/array/base/broadcast-array] input arrays and assign results to elements in a three-dimensional nested output array.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var bquinary3d = require( '@stdlib/array/base/broadcasted-quinary3d' );
3838

3939
#### bquinary3d( arrays, shapes, fcn )
4040

41-
Applies a quinary callback to elements in four [broadcasted][@stdlib/array/base/broadcast-array] nested input arrays and assigns results to elements in a three-dimensional nested output array.
41+
Applies a quinary callback to elements in five [broadcasted][@stdlib/array/base/broadcast-array] input arrays and assigns results to elements in a three-dimensional nested output array.
4242

4343
```javascript
4444
var zeros3d = require( '@stdlib/array/base/zeros3d' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function main() {
143143
N = floor( pow( pow( 10, i ), 1.0/3.0 ) );
144144
sh = [ N, N, N ];
145145
f = createBenchmark( sh );
146-
bench( pkg+'::square_matrix:size='+numel( sh ), f );
146+
bench( pkg+'::equidimensional:size='+numel( sh ), f );
147147
}
148148
}
149149

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( arrays, shapes, fcn )
3-
Applies a quinary callback to elements in five broadcasted input arrays
4-
and assigns results to elements in a three-dimensional nested output array.
3+
Applies a quinary callback to elements in five broadcasted input arrays and
4+
assigns results to elements in a three-dimensional nested output array.
55

66
Parameters
77
----------

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 ] ] ]
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 ] ] ]
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
2828
/**
2929
* Applies a quinary callback to elements in five broadcasted input arrays and assigns results to elements in a three-dimensional nested output array.
3030
*
31-
* @param {ArrayLikeObject<Array<Collection>>} arrays - array-like object containing five input nested arrays and one output nested array
31+
* @param {ArrayLikeObject<Array>} arrays - array-like object containing five input nested arrays and one output nested array
3232
* @param {ArrayLikeObject<NonNegativeIntegerArray>} shapes - array shapes
3333
* @param {Callback} fcn - quinary callback
3434
* @returns {void}
@@ -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 ] ] ]
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 ] ] ]
6464
*/
6565
function bquinary3d( arrays, shapes, fcn ) { // eslint-disable-line max-statements
6666
var dx0;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ tape( 'main export is a function', function test( t ) {
5151
t.end();
5252
});
5353

54-
tape( 'the function applies a provided callback to broadcasted input arrays and assigns results to a nested output array', function test( t ) {
54+
tape( 'the function applies a provided callback to broadcasted input arrays and assigns results to a nested output array', function test( t ) { // eslint-disable max-len
5555
var expected;
5656
var shapes;
5757
var out;

0 commit comments

Comments
 (0)