diff mbox series

Fix typo in pow summary

Message ID 20241014212405.246-1-agarskyivan@gmail.com
State New
Headers show
Series Fix typo in pow summary | expand

Commit Message

Ivan Agarsky Oct. 14, 2024, 9:24 p.m. UTC
From: Crabzmatic <agarskyivan@gmail.com>

---
 sysdeps/ieee754/ldbl-128/e_powl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

H.J. Lu Oct. 14, 2024, 10:25 p.m. UTC | #1
On Tue, Oct 15, 2024, 5:24 AM <agarskyivan@gmail.com> wrote:

> From: Crabzmatic <agarskyivan@gmail.com>
>
> ---
>  sysdeps/ieee754/ldbl-128/e_powl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sysdeps/ieee754/ldbl-128/e_powl.c
> b/sysdeps/ieee754/ldbl-128/e_powl.c
> index 4e20616705..5dd77d200a 100644
> --- a/sysdeps/ieee754/ldbl-128/e_powl.c
> +++ b/sysdeps/ieee754/ldbl-128/e_powl.c
> @@ -37,7 +37,7 @@
>   *     1. Compute and return log2(x) in two pieces:
>   *             log2(x) = w1 + w2,
>   *        where w1 has 113-53 = 60 bit trailing zeros.
> - *     2. Perform y*log2(x) = n+y' by simulating muti-precision
> + *     2. Perform y*log2(x) = n+y' by simulating multi-precision
>   *        arithmetic, where |y'|<=0.5.
>   *     3. Return x**y = 2**n*exp(y'*log2)
>   *
> --
> 2.45.1.windows.1
>

OK

Thanks.


>
>
diff mbox series

Patch

diff --git a/sysdeps/ieee754/ldbl-128/e_powl.c b/sysdeps/ieee754/ldbl-128/e_powl.c
index 4e20616705..5dd77d200a 100644
--- a/sysdeps/ieee754/ldbl-128/e_powl.c
+++ b/sysdeps/ieee754/ldbl-128/e_powl.c
@@ -37,7 +37,7 @@ 
  *	1. Compute and return log2(x) in two pieces:
  *		log2(x) = w1 + w2,
  *	   where w1 has 113-53 = 60 bit trailing zeros.
- *	2. Perform y*log2(x) = n+y' by simulating muti-precision
+ *	2. Perform y*log2(x) = n+y' by simulating multi-precision
  *	   arithmetic, where |y'|<=0.5.
  *	3. Return x**y = 2**n*exp(y'*log2)
  *