瀏覽代碼

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

Richard Trieu 11 年之前
父節點
當前提交
5e6c4a5476
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/ObjectiveCLiterals.rst

+ 2 - 2
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
-``<objc/objc.h>``:
+``<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
 ----------