From: Patrick Beard Date: Tue, 20 Mar 2012 21:52:11 +0000 (+0000) Subject: Fixed typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=249888590297721876644bd9d4ee874bc8e3f260;p=clang Fixed typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153142 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index d7e4931b8c..56226e687b 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html @@ -1138,7 +1138,7 @@ Objective-C memory management (autorelease).

Object Literals and Subscripting

-

Clang provides support for Object Literals and Subscripting in Objective-C, which simplifies common Objective-C programming patterns, make programs more concise, and improves the safety of container creation. There are several feature macros associated with object literals and subscripting: __has_feature(objc_array_literals) tests the availability of array literals; __has_feature(objc_dictionary_literals) tests the availability of dictionary literals; __has_feature(objc_subscripting) tests the availability of of object subscripting.

+

Clang provides support for Object Literals and Subscripting in Objective-C, which simplifies common Objective-C programming patterns, makes programs more concise, and improves the safety of container creation. There are several feature macros associated with object literals and subscripting: __has_feature(objc_array_literals) tests the availability of array literals; __has_feature(objc_dictionary_literals) tests the availability of dictionary literals; __has_feature(objc_subscripting) tests the availability of of object subscripting.

Function Overloading in C