From 6bcdcfa61227b7ecf53271c3e818c3e5238564bd Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 18 Sep 2024 08:31:53 +0200 Subject: [PATCH] uless -> unless --- src/libm/e_sqrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.