[libc-commits] [libc] 1479a21 - Fix typos in FPUtil README

via libc-commits libc-commits at lists.llvm.org
Fri Dec 3 01:22:04 PST 2021


Author: Guillaume Chatelet
Date: 2021-12-03T10:22:00+01:00
New Revision: 1479a211d2c72c949620889f0398ecd63aa4facb

URL: https://github.com/llvm/llvm-project/commit/1479a211d2c72c949620889f0398ecd63aa4facb
DIFF: https://github.com/llvm/llvm-project/commit/1479a211d2c72c949620889f0398ecd63aa4facb.diff

LOG: Fix typos in FPUtil README

Added: 
    

Modified: 
    libc/src/__support/FPUtil/generic/README.md

Removed: 
    


################################################################################
diff  --git a/libc/src/__support/FPUtil/generic/README.md b/libc/src/__support/FPUtil/generic/README.md
index e435325891a65..9b29e8480e80f 100644
--- a/libc/src/__support/FPUtil/generic/README.md
+++ b/libc/src/__support/FPUtil/generic/README.md
@@ -3,9 +3,9 @@ operations. The implementations are nested in the namespace
 `__llvm_libc::fputil::generic`. This is to facilitate calling these generic
 implementations from machine dependent implementations. Consider the example of
 the fuse-multiply-add operation (FMA). The C standard library requires three
-
diff erent flavors, `fma` which operates double precsion numbers, `fmaf` which
+
diff erent flavors, `fma` which operates double precision numbers, `fmaf` which
 operates on single precision numbers, and `fmal` which operates on `long double`
-numbers. On Aarch64, there are hardware instructions which implement the single
+numbers. On aarch64, there are hardware instructions which implement the single
 and double precision flavors but not the `long double` flavor. For such targets,
 we want to be able to call the generic `long double` implementation from the
 `long double` flavor. By putting the generic implementations in a separate


        


More information about the libc-commits mailing list