]> granicus.if.org Git - clang/commitdiff
Remove HTML codes from a .rst file. The proper HTML code will be added back
authorRichard Trieu <rtrieu@google.com>
Sat, 25 Jan 2014 01:32:39 +0000 (01:32 +0000)
committerRichard Trieu <rtrieu@google.com>
Sat, 25 Jan 2014 01:32:39 +0000 (01:32 +0000)
when the .html file is generated.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200060 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ObjectiveCLiterals.rst

index 8066d8f6bead585e4885250e0d008b990d141281..8907c1efc77d9a1eae0c6810e8e643468d1347ff 100644 (file)
@@ -91,7 +91,7 @@ Previously, the ``BOOL`` type was simply a typedef for ``signed char``,
 and ``YES`` and ``NO`` were macros that expand to ``(BOOL)1`` and
 ``(BOOL)0`` respectively. To support ``@YES`` and ``@NO`` expressions,
 these macros are now defined using new language keywords in
-``&LT;objc/objc.h&GT;``:
+``<objc/objc.h>``:
 
 .. code-block:: objc
 
@@ -251,7 +251,7 @@ This creates an ``NSDictionary`` with 3 key/value pairs. Value
 sub-expressions of a dictionary literal must be Objective-C object
 pointer typed, as in array literals. Key sub-expressions must be of an
 Objective-C object pointer type that implements the
-``&LT;NSCopying&GT;`` protocol.
+``<NSCopying>`` protocol.
 
 Discussion
 ----------