diff options
| -rw-r--r-- | clang/docs/ObjectiveCLiterals.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/ObjectiveCLiterals.rst b/clang/docs/ObjectiveCLiterals.rst index 8066d8f6bea..8907c1efc77 100644 --- a/clang/docs/ObjectiveCLiterals.rst +++ b/clang/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 -``<NSCopying>`` protocol. +``<NSCopying>`` protocol. Discussion ---------- |

