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

This commit is contained in:
Kazu Hirata 2025-06-18 12:03:17 -07:00 committed by GitHub
parent ab6beeca9c
commit ca9a09dbe6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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``