Skip to content

Commit 8f7d735

Browse files
committed
bench: fix parameter name
--- 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: na - 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 ---
1 parent 821035c commit 8f7d735

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/sinpi/benchmark/c/native

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/sinpi/benchmark/c/native/benchmark.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ static void print_version( void ) {
3838
* Prints the TAP summary.
3939
*
4040
* @param total total number of tests
41-
* @param passinpig total number of passinpig tests
41+
* @param passing total number of passing tests
4242
*/
43-
void print_summary( int total, int passinpig ) {
43+
void print_summary( int total, int passing ) {
4444
printf( "#\n" );
4545
printf( "1..%d\n", total ); // TAP plan
4646
printf( "# total %d\n", total );
47-
printf( "# pass %d\n", passinpig );
47+
printf( "# pass %d\n", passing );
4848
printf( "#\n" );
4949
printf( "# ok\n" );
5050
}

0 commit comments

Comments
 (0)