Skip to content

Commit d48a363

Browse files
committed
docs: update comment
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 64b7801 commit d48a363

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/ndarray/count-falsy/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var array = require( '@stdlib/ndarray/array' );
4747
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 0.0, 6.0 ] ] ] );
4848
// returns <ndarray>
4949

50-
// Perform operation:
50+
// Perform reduction:
5151
var out = countFalsy( x );
5252
// returns <ndarray>
5353

@@ -75,7 +75,7 @@ var ndarray2array = require( '@stdlib/ndarray/to-array' );
7575
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 0.0, 6.0 ] ] ] );
7676
// returns <ndarray>
7777

78-
// Perform operation:
78+
// Perform reduction:
7979
var out = countFalsy( x, {
8080
'dims': [ 1, 2 ]
8181
});
@@ -95,7 +95,7 @@ var ndarray2array = require( '@stdlib/ndarray/to-array' );
9595
var x = array( [ [ [ 1.0, 2.0 ] ], [ [ 3.0, 4.0 ] ], [ [ 0.0, 6.0 ] ] ] );
9696
// returns <ndarray>
9797

98-
// Perform operation:
98+
// Perform reduction:
9999
var out = countFalsy( x, {
100100
'dims': [ 1, 2 ],
101101
'keepdims': true
@@ -123,7 +123,7 @@ var y = empty( [], {
123123
'dtype': 'int32'
124124
});
125125

126-
// Perform operation:
126+
// Perform reduction:
127127
var out = countFalsy.assign( x, y );
128128
// returns <ndarray>
129129

@@ -160,7 +160,7 @@ var y = empty( [ 3 ], {
160160
'dtype': 'int32'
161161
});
162162

163-
// Perform operation:
163+
// Perform reduction:
164164
var out = countFalsy.assign( x, y, {
165165
'dims': [ 1, 2 ]
166166
});

lib/node_modules/@stdlib/ndarray/count-falsy/docs/types/index.d.ts

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

lib/node_modules/@stdlib/ndarray/count-falsy/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': 'int32'
7272
* });
7373
*
74-
* // Perform operation:
74+
* // Perform reduction:
7575
* var out = assign( x, y );
7676
* // returns <ndarray>
7777
*

lib/node_modules/@stdlib/ndarray/count-falsy/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-
* // Perform operation:
46+
* // Perform reduction:
4747
* var out = countFalsy( x );
4848
* // returns <ndarray>
4949
*
@@ -76,7 +76,7 @@
7676
* 'dtype': 'int32'
7777
* });
7878
*
79-
* // Perform operation:
79+
* // Perform reduction:
8080
* var out = countFalsy.assign( x, y );
8181
* // returns <ndarray>
8282
*

lib/node_modules/@stdlib/ndarray/count-falsy/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ var DEFAULT_DTYPE = defaults.get( 'dtypes.integer_index' );
7777
* // Create an input ndarray:
7878
* var x = new ndarray( 'float64', xbuf, sh, sx, ox, 'row-major' );
7979
*
80-
* // Perform operation:
80+
* // Perform reduction:
8181
* var out = countFalsy( x );
8282
* // returns <ndarray>
8383
*

0 commit comments

Comments
 (0)