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

Skip to content

Commit 02934dd

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 b98ce6e commit 02934dd

Some content is hidden

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

46 files changed

+48
-47
lines changed

lib/node_modules/@stdlib/ndarray/base/count-if/README.md

Lines changed: 3 additions & 2 deletions

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ type Predicate<T, U> = Nullary<U> | Unary<T, U> | Binary<T, U> | Ternary<T, U>;
9797
* // Create the input ndarray:
9898
* var x = ndarray( 'float64', xbuf, shape, sx, ox, 'row-major' );
9999
*
100-
* // Test elements:
100+
* // Perform operation:
101101
* var out = countIf( [ x ], predicate );
102102
* // returns 5
103103
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/0d.js

Lines changed: 1 addition & 1 deletion
< D405 tr class="diff-line-row">
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* 'order': 'row-major'
6767
* };
6868
*
69-
* // Test elements:
69+
* // Perform operation:
7070
* var out = countIf0d( x, predicate );
7171
* // returns 1
7272
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/0d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
* 'accessors': accessors( xbuf ).accessors
7070
* };
7171
*
72-
* // Test elements:
72+
* // Perform operation:
7373
* var out = countIf0d( x, predicate );
7474
* // returns 1
7575
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/10d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var take = require( '@stdlib/array/base/take-indexed' );
7676
* 'order': 'row-major'
7777
* };
7878
*
79-
* // Test elements:
79+
* // Perform operation:
8080
* var out = countIf10d( x, predicate );
8181
* // returns 5
8282
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/10d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ var take = require( '@stdlib/array/base/take-indexed' );
7979
* 'accessors': accessors( xbuf ).accessors
8080
* };
8181
*
82-
* // Test elements:
82+
* // Perform operation:
8383
* var out = countIf10d( x, predicate );
8484
* // returns 7
8585
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/10d_blocked.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var reverse = require( '@stdlib/array/base/reverse' );
7676
* 'order': 'row-major'
7777
* };
7878
*
79-
* // Test elements:
79+
* // Perform operation:
8080
* var out = blockedCountIf10d( x, predicate );
8181
* // returns 5
8282
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/10d_blocked_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ var reverse = require( '@stdlib/array/base/reverse' );
7979
* 'accessors': accessors( xbuf ).accessors
8080
* };
8181
*
82-
* // Test elements:
82+
* // Perform operation:
8383
* var out = blockedCountIf10d( x, predicate );
8484
* // returns 7
8585
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/1d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* 'order': 'row-major'
6767
* };
6868
*
69-
* // Test elements:
69+
* // Perform operation:
7070
* var out = countIf1d( x, predicate );
7171
* // returns 3
7272
*/

lib/node_modules/@stdlib/ndarray/base/count-if/lib/1d_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
* 'accessors': accessors( xbuf ).accessors
7070
* };
7171
*
72-
* // Test elements:
72+
* // Perform operation:
7373
* var out = countIf1d( x, predicate );
7474
* // returns 3
7575
*/

0 commit comments

Comments
 (0)
0