10000 docs: update comment · stdlib-js/stdlib@07508fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 07508fb

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: na - 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: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 590e26e commit 07508fb

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var x = {
6767
'order': 'row-major'
6868
};
6969

70-
// Test elements:
70+
// Perform operation:
7171
var out = countFalsy( [ x ] );
7272
// returns 1
7373
```
@@ -2197,7 +2197,7 @@ int main( void ) {
21972197
// Define an array containing the ndarrays:
21982198
struct ndarray *arrays[] = { x, y };
21992199

2200-
// Test elements:
2200+
// Perform operation:
22012201
int8_t status = stdlib_ndarray_count_falsy_b_i( arrays );
22022202
if ( status != 0 ) {
22032203
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/b_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ int main( void ) {
9292
// Define an array containing the ndarrays:
9393
struct ndarray *arrays[] = { x, y };
9494

95-
// Test elements:
95+
// Perform operation:
9696
int8_t status = stdlib_ndarray_count_falsy_b_i( arrays, NULL );
9797
if ( status != 0 ) {
9898
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/c_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ int main( void ) {
105105
// Define an array containing the ndarrays:
106106
struct ndarray *arrays[] = { x, y };
107107

108-
// Test elements:
108+
// Perform operation:
109109
int8_t status = stdlib_ndarray_count_falsy_c_i( arrays, NULL );
110110
if ( status != 0 ) {
111111
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/d_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int main( void ) {
9595
// Define an array containing the ndarrays:
9696
struct ndarray *arrays[] = { x, y };
9797

98-
// Test elements:
98+
// Perform operation:
9999
int8_t status = stdlib_ndarray_count_falsy_d_i( arrays, NULL );
100100
if ( status != 0 ) {
101101
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/f_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int main( void ) {
9595
// Define an array containing the ndarrays:
9696
struct ndarray *arrays[] = { x, y };
9797

98-
// Test elements:
98+
// Perform operation:
9999
int8_t status = stdlib_ndarray_count_falsy_f_i( arrays, NULL );
100100
if ( status != 0 ) {
101101
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/i_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int main( void ) {
9595
// Define an array containing the ndarrays:
9696
struct ndarray *arrays[] = { x, y };
9797

98-
// Test elements:
98+
// Perform operation:
9999
int8_t status = stdlib_ndarray_count_falsy_i_i( arrays, NULL );
100100
if ( status != 0 ) {
101101
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/s_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int main( void ) {
9595
// Define an array containing the ndarrays:
9696
struct ndarray *arrays[] = { x, y };
9797

98-
// Test elements:
98+
// Perform operation:
9999
int8_t status = stdlib_ndarray_count_falsy_s_i( arrays, NULL );
100100
if ( status != 0 ) {
101101
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/u_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ int main( void ) {
9595
// Define an array containing the ndarrays:
9696
struct ndarray *arrays[] = { x, y };
9797

98-
// Test elements:
98+
// Perform operation:
9999
int8_t status = stdlib_ndarray_count_falsy_u_i( arrays, NULL );
100100
if ( status != 0 ) {
101101
fprintf( stderr, "Error during computation.\n" );

lib/node_modules/@stdlib/ndarray/base/count-falsy/examples/c/z_i/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ int main( void ) {
105105
// Define an array containing the ndarrays:
106106
struct ndarray *arrays[] = { x, y };
107107

108-
// Test elements:
108+
// Perform operation:
109109
int8_t status = stdlib_ndarray_count_falsy_z_i( arrays, NULL );
110110
if ( status != 0 ) {
111111
fprintf( stderr, "Error during computation.\n" );

0 commit comments

Comments
 (0)
0