Skip to content

Commit f1fe6f6

Browse files
committed
[clang] Fix Clang release note documentation markup for nullability attributes.
1 parent 06f9e13 commit f1fe6f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/docs/ReleaseNotes.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ Attribute Changes in Clang
205205
to certain C++ class types, such as smart pointers:
206206
``void useObject(std::unique_ptr<Object> _Nonnull obj);``.
207207

208-
This works for standard library types including ``unique_ptr``, ``shared_ptr``
209-
and ``function``. See `the attribute reference
210-
documentation <https://llvm.org/docs/AttributeReference.html#nullability-attributes>`_
211-
for the full list.
208+
This works for standard library types including ``unique_ptr``, ``shared_ptr``,
209+
and ``function``. See
210+
`the attribute reference documentation <https://llvm.org/docs/AttributeReference.html#nullability-attributes>`_
211+
for the full list.
212212

213213
- The ``_Nullable`` attribute can be applied to C++ class declarations:
214214
``template <class T> class _Nullable MySmartPointer {};``.

0 commit comments

Comments
 (0)