Skip to content

Commit 81ade3a

Browse files
committed
Auto-generated commit
1 parent f96c918 commit 81ade3a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,7 @@ A total of 59 issues were closed in this release:
546546

547547
<details>
548548

549+
- [`8f7d735`](https://github.com/stdlib-js/stdlib/commit/8f7d73543738d3f186c4b404019873c0a5113550) - **bench:** fix parameter name _(by Philipp Burckhardt)_
549550
- [`b0cd1b9`](https://github.com/stdlib-js/stdlib/commit/b0cd1b9163c383ed2175b262ab2e3618a2617c86) - **feat:** add `math/base/special/cospif` [(#7726)](https://github.com/stdlib-js/stdlib/pull/7726) _(by Karan Anand, Philipp Burckhardt)_
550551
- [`c4e5266`](https://github.com/stdlib-js/stdlib/commit/c4e526652f448066f9374128338bab0728aee2a6) - **feat:** add `math/base/special/sinpif` [(#7720)](https://github.com/stdlib-js/stdlib/pull/7720) _(by Karan Anand, Philipp Burckhardt)_
551552
- [`5e6e13b`](https://github.com/stdlib-js/stdlib/commit/5e6e13ba6193f5c392c24c247c94fbf7d82c647f) - **bench:** use `random_uniform` _(by Karan Anand)_

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)