diff --git a/src/libm/e_sqrt.c b/src/libm/e_sqrt.c index 8ac58c62ac..6126b93f03 100644 --- a/src/libm/e_sqrt.c +++ b/src/libm/e_sqrt.c @@ -281,7 +281,7 @@ A. sqrt(x) by Newton Iteration This formula has one division fewer than the one above; however, it requires more multiplications and additions. Also x must be scaled in advance to avoid spurious overflow in evaluating the - expression 3y*y+x. Hence it is not recommended uless division + expression 3y*y+x. Hence it is not recommended unless division is slow. If division is very slow, then one should use the reciproot algorithm given in section B.