From: Aaron Ballman Date: Thu, 17 Jul 2014 12:25:32 +0000 (+0000) Subject: Fixing the objc_runtine_name documentation so that the code block is properly generated. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d44f9775915135418d2c0423256ff4fc866e190;p=clang Fixing the objc_runtine_name documentation so that the code block is properly generated. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@213259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/AttrDocs.td b/include/clang/Basic/AttrDocs.td index 914c0247c0..628f22f860 100644 --- a/include/clang/Basic/AttrDocs.td +++ b/include/clang/Basic/AttrDocs.td @@ -429,20 +429,20 @@ implementation of an override in a subclass does not call super. For example: def ObjCRuntimeNameDocs : Documentation { let Category = DocCatFunction; let Content = [{ - By default, the Objective-C interface or protocol identifier is used - in the metadata name for that object. The `objc_runtime_name` - attribute allows annotated interfaces or protocols to use the - specified string argument in the object's metadata name instead of the - default name. +By default, the Objective-C interface or protocol identifier is used +in the metadata name for that object. The `objc_runtime_name` +attribute allows annotated interfaces or protocols to use the +specified string argument in the object's metadata name instead of the +default name. - **Usage**: ``__attribute__((objc_runtime_name("MyLocalName")))``. This attribute - can only be placed before an @protocol or @interface declaration: +**Usage**: ``__attribute__((objc_runtime_name("MyLocalName")))``. This attribute +can only be placed before an @protocol or @interface declaration: - .. code-block:: objc +.. code-block:: objc - __attribute__((objc_runtime_name("MyLocalName"))) - @interface Message - @end + __attribute__((objc_runtime_name("MyLocalName"))) + @interface Message + @end }]; }