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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse cotangent of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_acot( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse hyperbolic cotangent of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* out = stdlib_base_acoth( 2.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse coversed cosine of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_acovercos( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse coversed sine of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_acoversin( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Compute the inverse half value versed cosine of a double-precision floating-point number.
2525
*
2626
* @param x input value
27-
* @return output value
27+
* @return output value
2828
*
2929
* @example
3030
* double out = stdlib_base_ahavercos( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse (arc) secant of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_asec( 1.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ static double rational_rs( const double x ) {
151151
* | IEEE | -1, 1 | 10^6 | 1.9e-16 | 5.4e-17 |
152152
*
153153
* @param x input value
154-
* @return output value (in radians)
154+
* @return output value (in radians)
155155
*
156156
* @example
157157
* double out = stdlib_base_asin( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static const double HUGE = 1 << 28; // 2**28
6565
* ```
6666
*
6767
* @param x input value
68-
* @return output value
68+
* @return output value
6969
*
7070
* @example
7171
* double out = stdlib_base_asinh( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static double polyval_q( const double x ) {
106106
* | IEEE | -10, 10 | 10^6 | 1.8e-16 | 5.0e-17 |
107107
*
108108
* @param x input value
109-
* @return arctangent (in radians)
109+
* @return arctangent (in radians)
110110
*
111111
* @example
112112
* double out = stdlib_base_atan( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse versed cosine of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_avercos( -3.141592653589793/6.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Computes the inverse versed sine of a double-precision floating-point number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* double out = stdlib_base_aversin( 3.141592653589793/6.0 );

lib/node_modules/@stdlib/math/base/special/dirac-delta/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Evaluates the Dirac delta function.
2525
*
2626
* @param x input value
27-
* @return output value
27+
* @return output value
2828
*
2929
* @example
3030
* double out = stdlib_base_dirac_delta( 3.14 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ static double expmulti( const double hi, const double lo, const int32_t k ) {
214214
* - The hexadecimal values included in the source code are the intended ones for the used constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values.
215215
*
216216
* @param x input value
217-
* @return output value
217+
* @return output value
218218
*
219219
* @example
220220
* double out = stdlib_base_exp( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ static double polyval_q( const double x ) {
110110
* | IEEE | -307,+307 | 30000 | 2.2e-16 | 5.5e-17 |
111111
*
112112
* @param x input value
113-
* @return output value
113+
* @return output value
114114
*
115115
* @example
116116
* double out = stdlib_base_exp10( 2.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ static double polyval_q( const double x ) {
224224
* - According to an error analysis, the error is always less than \\(1\\) ulp (unit in the last place).
225225
*
226226
* @param x input value
227-
* @return output value
227+
* @return output value
228228
*
229229
* @example
230230
* double v = stdlib_base_expm1( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static const int64_t fibonacci_value[ 79 ] = {
105105
* Computes the nth Fibonacci number.
106106
*
107107
* @param n input value
108-
* @return output value
108+
* @return output value
109109
*
110110
* @example
111111
* double out = stdlib_base_fibonacci( 1 );

lib/node_modules/@stdlib/math/base/special/kernel-sin/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ static const double S6 = 1.58969099521155010221e-10; // 0x3DE5D93A, 0x5ACFD57C
7979
*
8080
* @param x input value (in radians, assumed to be bounded by `~pi/4` in magnitude)
8181
* @param y tail of `x`
82-
* @return sine
82+
* @return sine
8383
*
8484
* @example
8585
* double out = stdlib_base_kernel_sin( 3.141592653589793/6.0, 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @param x input value
2626
* @param b input value
27-
* @return output value
27+
* @return output value
2828
*
2929
* @example
3030
* double out = stdlib_base_log( 100.0, 10.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Computes the natural logarithm of \\( 1-\exp(-|x|) \\).
3131
*
3232
* @param x input value
33-
* @return output value
33+
* @return output value
3434
*
3535
* @example
3636
* double out = stdlib_base_log1mexp( 5.0 );

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ static double polyval_lp( const double x ) {
227227
* See HP-15C Advanced Functions Handbook, p.193.
228228
*
229229
* @param x input value
230-
* @return output value
230+
* @return output value
231231
*
232232
* @example
233233
* double out = stdlib_base_log1p( 4.0 );
@@ -311,7 +311,7 @@ double stdlib_base_log1p( const double x ) {
311311
}
312312
// Apply a bit mask (0 00000000000 11111111111111111111) to remove the exponent:
313313
hu &= 0x000fffff; // max value => 0x000fffff => 1048575
314-
314+
315315
// The approximation to sqrt(2) used in thresholds is not critical. However, the ones used above must give less strict bounds than the one here so that the k==0 case is never reached from here, since here we have committed to using the correction term but don't use it if k==0.
316316

317317
// Check if u significand is less than sqrt(2) significand => 0x6a09e => 01101010000010011110

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Computes the natural logarithm of \\( 1 + \exp(x) \\).
2626
*
2727
* @param x input value
28-
* @return output value
28+
* @return output value
2929
*
3030
* @example
3131
* double out = stdlib_base_log1pexp( 0.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*
2828
* @param x input value
2929
* @param y input value
30-
* @return output value
30+
* @return output value
3131
*
3232
* @example
3333
* double out = stdlib_base_logaddexp( 90.0, 90.0 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Evaluates the logit function.
2828
*
2929
* @param x input value
30-
* @return output value
30+
* @return output value
3131
*
3232
* @example
3333
* double out = stdlib_base_logit( 0.2 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Computes the nth non-Fibonacci number.
3434
*
3535
* @param x input value
36-
* @return output value
36+
* @return output value
3737
*
3838
* @example
3939
* double y = stdlib_base_nonfibonacci( 2 );

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static const double CONST_180_DIV_PI = 57.29577951308232;
2525
* Converts an angle from radians to degrees.
2626
*
2727
* @param x input value (in radians)
28-
* @return output value (in degrees)
28+
* @return output value (in degrees)
2929
*
3030
* @example
3131
* double x = 3.141592653589793/2.0

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Compute the principal square root of the product of π and a positive double-precision floating-point number.
2525
*
2626
* @param x input value
27-
* @return output value
27+
* @return output value
2828
*
2929
* @example
3030
* double out = stdlib_base_sqrtpi( 4.0 );

lib/node_modules/@stdlib/stats/base/dists/rayleigh/mean/benchmark/c/benchmark.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ static void print_version( void ) {
3838
/**
3939
* Prints the TAP summary.
4040
*
41-
* @param total total number of tests
42-
* @param passing total number of passing tests
41+
* @param total total number of tests
42+
* @param passing total number of passing tests
4343
*/
4444
static void print_summary( int total, int passing ) {
4545
printf( "#\n" );

0 commit comments

Comments
 (0)