Skip to content

Commit 0abeb55

Browse files
committed
Auto-generated commit
1 parent ac7fed2 commit 0abeb55

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
<details>
3636

37+
- [`64b7801`](https://github.com/stdlib-js/stdlib/commit/64b7801d3202b603b6014e0a065d0ddff2f9fce8) - **docs:** update comment _(by Athan Reines)_
3738
- [`be08665`](https://github.com/stdlib-js/stdlib/commit/be08665312b7e55f04365176a4f6ea75aad8c70d) - **style:** enable lint rule _(by Athan Reines)_
3839
- [`d9244bc`](https://github.com/stdlib-js/stdlib/commit/d9244bc1788da997f3c7029291dc19ba1116f0cc) - **docs:** update examples _(by Athan Reines)_
3940
- [`86632f3`](https://github.com/stdlib-js/stdlib/commit/86632f3d1a2de336941303b32e994c870bcaeb71) - **fix:** check for duplicate indices _(by Athan Reines)_

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ var array = require( '@stdlib/ndarray-array' );
8080
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 5.0, 6.0 ] ] ] );
8181
// returns <ndarray>
8282

83-
// Test elements:
83+
// Perform reduction:
8484
var out = every( x );
8585
// returns <ndarray>
8686

@@ -108,7 +108,7 @@ var ndarray2array = require( '@stdlib/ndarray-to-array' );
108108
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 5.0, 6.0 ] ] ] );
109109
// returns <ndarray>
110110

111-
// Test elements:
111+
// Perform reduction:
112112
var out = every( x, {
113113
'dims': [ 1, 2 ]
114114
});
@@ -128,7 +128,7 @@ var ndarray2array = require( '@stdlib/ndarray-to-array' );
128128
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 5.0, 6.0 ] ] ] );
129129
// returns <ndarray>
130130

131-
// Test elements:
131+
// Perform reduction:
132132
var out = every( x, {
133133
'dims': [ 1, 2 ],
134134
'keepdims': true
@@ -156,7 +156,7 @@ var y = empty( [], {
156156
'dtype': 'bool'
157157
});
158158

159-
// Test elements:
159+
// Perform reduction:
160160
var out = every.assign( x, y );
161161
// returns <ndarray>
162162

@@ -193,7 +193,7 @@ var y = empty( [ 3 ], {
193193
'dtype': 'bool'
194194
});
195195

196-
// Test elements:
196+
// Perform reduction:
197197
var out = every.assign( x, y, {
198198
'dims': [ 1, 2 ]
199199
});

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ interface Every {
7575
* // Create an input ndarray:
7676
* var x = new ndarray( 'float64', xbuf, sh, sx, ox, 'row-major' );
7777
*
78-
* // Test elements:
78+
* // Perform reduction:
7979
* var out = every( x );
8080
* // returns <ndarray>
8181
*
@@ -118,7 +118,7 @@ interface Every {
118118
* 'dtype': 'bool'
119119
* });
120120
*
121-
* // Test elements:
121+
* // Perform reduction:
122122
* var out = every.assign( x, y );
123123
* // returns <ndarray>
124124
*
@@ -156,7 +156,7 @@ interface Every {
156156
* // Create an input ndarray:
157157
* var x = new ndarray( 'float64', xbuf, sh, sx, ox, 'row-major' );
158158
*
159-
* // Test elements:
159+
* // Perform reduction:
160160
* var out = every( x );
161161
* // returns <ndarray>
162162
*
@@ -188,7 +188,7 @@ interface Every {
188188
* 'dtype': 'bool'
189189
* });
190190
*
191-
* // Test elements:
191+
* // Perform reduction:
192192
* var out = every.assign( x, y );
193193
* // returns <ndarray>
194194
*

lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var validate = require( './validate.js' );
7171
* 'dtype': 'bool'
7272
* });
7373
*
74-
* // Test elements:
74+
* // Perform reduction:
7575
* var out = assign( x, y );
7676
* // returns <ndarray>
7777
*

lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* // Create an input ndarray:
4444
* var x = new ndarray( 'float64', xbuf, sh, sx, ox, 'row-major' );
4545
*
46-
* // Test elements:
46+
* // Perform reduction:
4747
* var out = every( x );
4848
* // returns <ndarray>
4949
*
@@ -76,7 +76,7 @@
7676
* 'dtype': 'bool'
7777
* });
7878
*
79-
* // Test elements:
79+
* // Perform reduction:
8080
* var out = every.assign( x, y );
8181
* // returns <ndarray>
8282
*

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var validate = require( './validate.js' );
7676
* // Create an input ndarray:
7777
* var x = new ndarray( 'float64', xbuf, sh, sx, ox, 'row-major' );
7878
*
79-
* // Test elements:
79+
* // Perform reduction:
8080
* var out = every( x );
8181
* // returns <ndarray>
8282
*

0 commit comments

Comments
 (0)