Skip to content

Commit 5330df1

Browse files
committed
fix: bug fix in c files
1 parent 99ca5dc commit 5330df1

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/ahavercosf/src

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
* float out = stdlib_base_ahavercosf( 0.0f );
3131
* // returns ~3.1416f
3232
*/
33-
float stdlib_base_ahavercos( const float x ) {
33+
float stdlib_base_ahavercosf( const float x ) {
3434
return 2.0f * stdlib_base_acosf( stdlib_base_sqrtf( x ) );
3535
}

0 commit comments

Comments
 (0)