[libcxx-commits] [libcxx] ca9a09d - [libc++] Fix a typo in documentation (#144763)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jun 18 12:03:21 PDT 2025


Author: Kazu Hirata
Date: 2025-06-18T15:03:17-04:00
New Revision: ca9a09dbe679dbdd4d47cb7894977e04c3bb914e

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

LOG: [libc++] Fix a typo in documentation (#144763)

Added: 
    

Modified: 
    libcxx/docs/ABIGuarantees.rst

Removed: 
    


################################################################################
diff  --git a/libcxx/docs/ABIGuarantees.rst b/libcxx/docs/ABIGuarantees.rst
index e6ac4f2b5b230..c7d5afe1080bb 100644
--- a/libcxx/docs/ABIGuarantees.rst
+++ b/libcxx/docs/ABIGuarantees.rst
@@ -92,7 +92,7 @@ Linking TUs which have been compiled with 
diff erent flags affecting code gen
 There are a lot of compiler (and library) flags which change the code generated for functions. This includes flags like
 ``-O1``, which are guaranteed by the compiler to not change the observable behaviour of a correct program, as well as
 flags like ``-fexceptions``, which **do** change the observable behaviour. libc++ allows linking of TUs which have been
-compiled whith specific flags only and makes no guarantees for any of the flags not listed below.
+compiled with specific flags only and makes no guarantees for any of the flags not listed below.
 
 The flags allowed (in any combination) are:
 - ``-f[no-]exceptions``


        


More information about the libcxx-commits mailing list