8000 docs: update comment · stdlib-js/stdlib@64b7801 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 64b7801

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 77957f2 commit 64b7801

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/ndarray/every/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 ] ], [ [ 5.0, 6.0 ] ] ] );
4848
// returns <ndarray>
4949

50-
// Test elements:
50+
// Perform reduction:
5151
var out = every( 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 ] ], [ [ 5.0, 6.0 ] ] ] );
7676
// returns <ndarray>
7777

78-
// Test elements:
78+
// Perform reduction:
7979
var out = every( 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 ] ], [ [ 5.0, 6.0 ] ] ] );
9696
// returns <ndarray>
9797

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

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

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

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

lib/node_modules/@stdlib/ndarray/every/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'
189 8000 189
* });
190190
*
191-
* // Test elements:
191+
* // Perform reduction:
192192
* var out = every.assign( x, y );
193193
* // returns <ndarray>
194194
*

lib/node_modules/@stdlib/ndarray/every/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/node_modules/@stdlib/ndarray/every/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/node_modules/@stdlib/ndarray/every/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)
0