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

Kazu Hirata via libcxx-commits libcxx-commits at lists.llvm.org
Wed Jun 18 10:35:03 PDT 2025


https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/144763

None

>From 3e508cf8217c4be63828a4844ba80aad64837c76 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Wed, 18 Jun 2025 03:47:47 -0700
Subject: [PATCH] [libc] Fix a typo in documentation

---
 libcxx/docs/ABIGuarantees.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 different 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