Skip to content

Commit 8ada47e

Browse files
committed
chore: fix indentation
--- 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: passed - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: passed - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: passed - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: passed ---
1 parent cc32a34 commit 8ada47e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ double stdlib_base_fmod( const double x, const double y ) {
144144
if ( n <= 31 ) {
145145
hx = ( (uint32_t)hx << n ) | ( lx >> ( 32 - n ) );
146146
lx <<= n;
147-
} else {
147+
} else {
148148
hx = lx << ( n - 32 );
149149
lx = 0;
150150
}

lib/node_modules/@stdlib/stats/base/dists/triangular/variance/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ static void print_version( void ) {
3737
/**
3838
* Prints the TAP summary.
3939
*
40-
* @param total total number of tests
41-
* @param passing total number of passing tests
40+
* @param total total number of tests
41+
* @param passing total number of passing tests
4242
*/
4343
static void print_summary( int total, int passing ) {
4444
printf( "#\n" );

lib/node_modules/@stdlib/stats/base/dists/uniform/entropy/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ double stdlib_base_dists_uniform_entropy( const double a, const double b ) {
3636
stdlib_base_is_nan( a ) ||
3737
stdlib_base_is_nan( b ) ||
3838
a >= b
39-
) {
39+
) {
4040
return 0.0 / 0.0; // NaN
4141
}
4242
return stdlib_base_ln( b - a );

lib/node_modules/@stdlib/stats/base/dists/uniform/median/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ static void print_version( void ) {
3737
/**
3838
* Prints the TAP summary.
3939
*
40-
* @param total total number of tests
41-
* @param passing total number of passing tests
40+
* @param total total number of tests
41+
* @param passing total number of passing tests
4242
*/
4343
static void print_summary( int total, int passing ) {
4444
printf( "#\n" );

lib/node_modules/@stdlib/stats/base/dists/weibull/mean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ double stdlib_base_dists_weibull_mean( const double k, const double lambda ) {
3737
stdlib_base_is_nan( lambda ) ||
3838
k <= 0.0 ||
3939
lambda <= 0.0
40-
) {
40+
) {
4141
return 0.0 / 0.0; // NaN
4242
}
4343
return lambda * stdlib_base_gamma( 1.0 + (1.0/k) );

0 commit comments

Comments
 (0)