From 1c4cddc8abc94c3ae48ccae32a2400463fb88470 Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 18 Sep 2024 08:46:20 +0200 Subject: [PATCH] shifs -> shifts --- 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 6126b93f03..77708ae339 100644 --- a/src/libm/e_sqrt.c +++ b/src/libm/e_sqrt.c @@ -331,7 +331,7 @@ B. sqrt(x) by Reciproot Iteration Let x0 and x1 be the leading and the trailing 32-bit words of a floating point number x (in IEEE double format) respectively - (see section A). By performing shifs and subtracts on x0 and y0, + (see section A). By performing shifts and subtracts on x0 and y0, we obtain a 7.8-bit approximation of 1/sqrt(x) as follows. k := 0x5fe80000 - (x0>>1);