[libc-commits] [libc] [libc][NFC] Fix typo in dyadic_float.h (PR #83846)

Guillaume Chatelet via libc-commits libc-commits at lists.llvm.org
Mon Mar 4 05:42:37 PST 2024


https://github.com/gchatelet created https://github.com/llvm/llvm-project/pull/83846

None

>From 660365f2c44c50684dc2325689c5ae6a4ed45821 Mon Sep 17 00:00:00 2001
From: Guillaume Chatelet <gchatelet at google.com>
Date: Mon, 4 Mar 2024 14:42:14 +0100
Subject: [PATCH] [libc][NFC] Fix typo in dyadic_float.h

---
 libc/src/__support/FPUtil/dyadic_float.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libc/src/__support/FPUtil/dyadic_float.h b/libc/src/__support/FPUtil/dyadic_float.h
index 14bc73433097b7..f25fa9b3026c1a 100644
--- a/libc/src/__support/FPUtil/dyadic_float.h
+++ b/libc/src/__support/FPUtil/dyadic_float.h
@@ -19,7 +19,7 @@
 
 namespace LIBC_NAMESPACE::fputil {
 
-// A generic class to perform comuptations of high precision floating points.
+// A generic class to perform computations of high precision floating points.
 // We store the value in dyadic format, including 3 fields:
 //   sign    : boolean value - false means positive, true means negative
 //   exponent: the exponent value of the least significant bit of the mantissa.



More information about the libc-commits mailing list