aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2024-01-22 09:22:08 -0500
committerLouis Dionne <ldionne.2@gmail.com>2024-01-22 09:22:08 -0500
commit70823fe4871eb6ca3fe8dc8264ac005c8edbfe70 (patch)
treefa18510cd7885ee12c1804b3e74b65a02c51e756
parent1edb43f62ca408774b4392cbe641598e1c4725be (diff)
downloadllvm-70823fe4871eb6ca3fe8dc8264ac005c8edbfe70.zip
llvm-70823fe4871eb6ca3fe8dc8264ac005c8edbfe70.tar.gz
llvm-70823fe4871eb6ca3fe8dc8264ac005c8edbfe70.tar.bz2
[libc++][NFC] Fix incorrect formatting of release notes
-rw-r--r--libcxx/docs/ReleaseNotes/18.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/docs/ReleaseNotes/18.rst b/libcxx/docs/ReleaseNotes/18.rst
index c619f94..237a630 100644
--- a/libcxx/docs/ReleaseNotes/18.rst
+++ b/libcxx/docs/ReleaseNotes/18.rst
@@ -148,11 +148,11 @@ Deprecations and Removals
macro is provided to restore the previous behavior, and it will be supported in the LLVM 18 release only.
In LLVM 19 and beyond, ``_LIBCPP_ENABLE_NARROWING_CONVERSIONS_IN_VARIANT`` will not be honored anymore.
-- Overriding `__libcpp_verbose_abort` no longer has any effect on library assertions. The only supported way
+- Overriding ``__libcpp_verbose_abort`` no longer has any effect on library assertions. The only supported way
to customize the assertion handler that gets invoked when a hardening assertion fails is now by setting the
``LIBCXX_ASSERTION_HANDLER_FILE`` CMake variable and providing a custom header. See the documentation on
- overriding the default assertion handler for details. The ability to override `__libcpp_verbose_abort` will
- be removed in an upcoming release in favor of the new overriding mechanism.
+ overriding the default assertion handler for details. The ability to override ``__libcpp_verbose_abort``
+ will be removed in an upcoming release in favor of the new overriding mechanism.
- In safe mode (which is now equivalent to the ``extensive`` hardening mode), a failed assertion will now
generate a trap rather than a call to verbose abort.