Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Apr 3, 2024
1 parent 46b90fe commit f50edb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/special/acosf/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ function acosf( x ) {
if ( isnanf( x ) ) {
return NaN;
}
x = float64ToFloat32( x );
if ( x < -1.0 || x > 1.0 ) {
return NaN;
}
Expand All @@ -99,7 +100,6 @@ function acosf( x ) {
if ( x === -1.0 ) {
return PI;
}
x = float64ToFloat32( x );
ax = absf( x );
if ( ax < 0.5 ) {
if ( ax <= SMALL ) {
Expand Down

0 comments on commit f50edb2

Please sign in to comment.