Skip to content

Commit ccea8d2

Browse files
committed
chore: apply suggestions from review
--- 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: passed - 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 180ca75 commit ccea8d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-sinf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ int main( void ) {
148148
int i;
149149
for ( i = 0; i < 10; i++ ) {
150150
out = stdlib_base_kernel_sinf( x[ i ] );
151-
printf ( "kernelSinf(%lf) = %f\n", x[ i ], out );
151+
printf( "kernelSinf(%lf) = %f\n", x[ i ], out );
152152
}
153153
}
154154
```

lib/node_modules/@stdlib/math/base/special/kernel-sinf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ int main( void ) {
2626
int i;
2727
for ( i = 0; i < 10; i++ ) {
2828
out = stdlib_base_kernel_sinf( x[ i ] );
29-
printf ( "kernelSinf(%lf) = %f\n", x[ i ], out );
29+
printf( "kernelSinf(%lf) = %f\n", x[ i ], out );
3030
}
3131
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static double polyval_s34( const double x ) {
7373
// END: polyval_s34
7474

7575
/**
76-
* Computes the sine of a single-precision floating-point number on \\( \[-\pi/4, \pi/4] \\), where \\( \pi/4 \approx 0.785398164 \\).
76+
* Computes the sine of a number on \\( \[-\pi/4, \pi/4] \\) in single-precision floating-point format, where \\( \pi/4 \approx 0.785398164 \\).
7777
*
7878
* ## Notes
7979
*

0 commit comments

Comments
 (0)