-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[NFC][libclang/python] Fix code highlighting in release notes #102807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This corrects a release note introduced in llvm#98745
@llvm/pr-subscribers-clang Author: Jannick Kremer (DeinAlptraum) ChangesThis corrects a release note introduced in #98745 Full diff: https://github.com/llvm/llvm-project/pull/102807.diff 1 Files Affected:
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index d002a9c747dd6..6796a619ba97f 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -61,9 +61,9 @@ Clang Frontend Potentially Breaking Changes
Clang Python Bindings Potentially Breaking Changes
--------------------------------------------------
- Parts of the interface returning string results will now return
- the empty string `""` when no result is available, instead of `None`.
-- Calling a property on the `CompletionChunk` or `CompletionString` class
- statically now leads to an error, instead of returning a `CachedProperty` object
+ the empty string ``""`` when no result is available, instead of ``None``.
+- Calling a property on the ``CompletionChunk`` or ``CompletionString`` class
+ statically now leads to an error, instead of returning a ``CachedProperty`` object
that is used internally. Properties are only available on instances.
What's New in Clang |release|?
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/66/builds/2725 Here is the relevant piece of the build log for the reference:
|
Unrelated, this change only touched release notes |
This corrects a release note introduced in #98745