[cfe-commits] r144412 - /cfe/trunk/include/clang-c/Index.h

Douglas Gregor dgregor at apple.com
Fri Nov 11 14:35:18 PST 2011


Author: dgregor
Date: Fri Nov 11 16:35:18 2011
New Revision: 144412

URL: http://llvm.org/viewvc/llvm-project?rev=144412&view=rev
Log:
Fix some typos, grammar errors, etc. in cursor kind descriptions

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=144412&r1=144411&r2=144412&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Fri Nov 11 16:35:18 2011
@@ -1685,19 +1685,19 @@
    */
   CXCursor_UnaryExpr                     = 136,
 
-  /** \brief ObjCStringLiteral, used for Objective-C string literals i.e. "foo".
+  /** \brief An Objective-C string literal i.e. @"foo".
    */
   CXCursor_ObjCStringLiteral             = 137,
 
-  /** \brief ObjCEncodeExpr, used for in Objective-C.
+  /** \brief An Objective-C @encode expression.
    */
   CXCursor_ObjCEncodeExpr                = 138,
 
-  /** \brief ObjCSelectorExpr used for in Objective-C.
+  /** \brief An Objective-C @selector expression.
    */
   CXCursor_ObjCSelectorExpr              = 139,
 
-  /** \brief Objective-C's protocol expression.
+  /** \brief An Objective-C @protocol expression.
    */
   CXCursor_ObjCProtocolExpr              = 140,
 





More information about the cfe-commits mailing list