We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821035c commit 8f7d735Copy full SHA for 8f7d735
lib/node_modules/@stdlib/math/base/special/sinpi/benchmark/c/native/benchmark.c
@@ -38,13 +38,13 @@ static void print_version( void ) {
38
* Prints the TAP summary.
39
*
40
* @param total total number of tests
41
-* @param passinpig total number of passinpig tests
+* @param passing total number of passing tests
42
*/
43
-void print_summary( int total, int passinpig ) {
+void print_summary( int total, int passing ) {
44
printf( "#\n" );
45
printf( "1..%d\n", total ); // TAP plan
46
printf( "# total %d\n", total );
47
- printf( "# pass %d\n", passinpig );
+ printf( "# pass %d\n", passing );
48
49
printf( "# ok\n" );
50
}
0 commit comments