Skip to content

Commit 5965da3

Browse files
committed
Auto-generated commit
1 parent 4cf16ee commit 5965da3

File tree

71 files changed

+974
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+974
-89
lines changed

base/binary2d/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
# binary2d
2222

23-
> Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
23+
> Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
2424
2525
<section class="intro">
2626

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

3939
#### binary2d( arrays, shape, fcn )
4040

41-
Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
41+
Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
4242

4343
```javascript
4444
var add = require( '@stdlib/math/base/ops/add' );

base/binary2d/docs/repl.txt

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

22
{{alias}}( arrays, shape, fcn )
3-
Applies a binary callback to elements in two-dimensional nested input arrays
4-
and assigns results to elements in a two-dimensional nested output array.
3+
Applies a binary callback to elements in two two-dimensional nested input
4+
arrays and assigns results to elements in a two-dimensional nested output
5+
array.
56

67
Parameters
78
----------

base/binary2d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { Shape2D } from '@stdlib/types/ndarray';
3232
type Binary<T, U, V> = ( v1: T, v2: U ) => V;
3333

3434
/**
35-
* Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
35+
* Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
3636
*
3737
* ## Notes
3838
*

base/binary2d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
22+
* Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.
2323
*
2424
* @module @stdlib/array/base/binary2d
2525
*

base/binary2d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MAIN //
2222

2323
/**
24-
* Applies a binary callback to elements in two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
24+
* Applies a binary callback to elements in two two-dimensional nested input arrays and assigns results to elements in a two-dimensional nested output array.
2525
*
2626
* ## Notes
2727
*

base/binary2d/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/array/base/binary2d",
33
"version": "0.0.0",
4-
"description": "Apply a binary callback to elements in two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.",
4+
"description": "Apply a binary callback to elements in two two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

base/binary2d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
110110
z = zeros2d( shape );
111111

112112
expected = zeros2d( shape );
113-
binary2d( [ x, y ], [ 2, 0 ], clbk );
113+
binary2d( [ x, y, z ], [ 2, 0 ], clbk );
114114

115115
t.deepEqual( z, expected, 'returns expected value' );
116116
t.end();

base/binary3d/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
# binary3d
2222

23-
> Apply a binary callback to elements in three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.
23+
> Apply a binary callback to elements in two three-dimensional nested 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 binary3d = require( '@stdlib/array/base/binary3d' );
3838

3939
#### binary3d( arrays, shape, fcn )
4040

41-
Applies a binary callback to elements in three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
41+
Applies a binary callback to elements in two three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
4242

4343
```javascript
4444
var add = require( '@stdlib/math/base/ops/add' );

base/binary3d/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( arrays, shape, fcn )
3-
Applies a binary callback to elements in three-dimensional nested input
3+
Applies a binary callback to elements in two three-dimensional nested input
44
arrays and assigns results to elements in a three-dimensional nested output
55
array.
66

base/binary3d/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { Shape3D } from '@stdlib/types/ndarray';
3232
type Binary<T, U, V> = ( v1: T, v2: U ) => V;
3333

3434
/**
35-
* Applies a binary callback to elements in three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
35+
* Applies a binary callback to elements in two three-dimensional nested input arrays and assigns results to elements in a three-dimensional nested output array.
3636
*
3737
* ## Notes
3838
*

0 commit comments

Comments
 (0)