From: Patrick Beard Date: Wed, 21 Mar 2012 16:22:53 +0000 (+0000) Subject: Removed repeated word (of of). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1526f54368f53be99c3f3d91a20511f2067caa90;p=clang Removed repeated word (of of). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153195 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 56226e687b..af0d328f68 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, 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.

+

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 object subscripting.

Function Overloading in C