From 0661d0fc42ab2e415163f99a92750690e476aff0 Mon Sep 17 00:00:00 2001 From: Patrick Beard Date: Tue, 20 Mar 2012 21:52:11 +0000 Subject: [PATCH] Fixed typo. llvm-svn: 153142 --- clang/docs/LanguageExtensions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/LanguageExtensions.html b/clang/docs/LanguageExtensions.html index d7e4931b8c8e..56226e687bd6 100644 --- a/clang/docs/LanguageExtensions.html +++ b/clang/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