summaryrefslogtreecommitdiffstats
path: root/docs/ObjectiveCLiterals.rst
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2014-01-25 01:32:39 +0000
committerRichard Trieu <rtrieu@google.com>2014-01-25 01:32:39 +0000
commit5e6c4a54766c700deebfcc57a6dd8142f62451c9 (patch)
tree61cffe5d8769865722d4c21f72793c5c3a6dd66c /docs/ObjectiveCLiterals.rst
parentc8a38fbc6ba95fd9bd47550b0a162e71451b20b9 (diff)
Remove HTML codes from a .rst file. The proper HTML code will be added back
when the .html file is generated. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200060 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ObjectiveCLiterals.rst')
-rw-r--r--docs/ObjectiveCLiterals.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ObjectiveCLiterals.rst b/docs/ObjectiveCLiterals.rst
index 8066d8f6be..8907c1efc7 100644
--- a/docs/ObjectiveCLiterals.rst
+++ b/docs/ObjectiveCLiterals.rst
@@ -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
----------