Skip to content

Commit f13ddb2

Browse files
committed
style: use spaces for alignment in C comments
--- 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: na - 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: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: passed - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: passed - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 74708de commit f13ddb2

File tree

37 files changed

+39
-39
lines changed

37 files changed

+39
-39
lines changed

lib/node_modules/@stdlib/math/base/assert/is-even/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite numeric value is an even number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-evenf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Test if a finite single-precision floating-point number is an even number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-integer/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite double-precision floating-point number is an integer.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-negative-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point numeric value is a negative finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-nonnegative-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a numeric value is a nonnegative finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-odd/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite double-precision floating-point number is an odd number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-positive-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point numeric value is a positive finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-probability/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point number is a probability.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/special/acos/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ static const double MOREBITS = 6.123233995736765886130e-17; // pi/2 = PIO2 + MOR
7272
* | IEEE | -1, 1 | 10^6 | 2.2e-16 | 6.5e-17 |
7373
*
7474
* @param x input value ( in radians )
75-
* @return output value
75+
* @return output value
7676
*
7777
* @example
7878
* double out = stdlib_base_acos( 0.0 );

lib/node_modules/@stdlib/math/base/special/acosh/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static const double HUGE = 1 << 28; // 2**28
7070
* ```
7171
*
7272
* @param x input value
73-
* @return output value
73+
* @return output value
7474
*
7575
* @example
7676
* double out = stdlib_base_acosh( 1.0 );

0 commit comments

Comments
 (0)