summaryrefslogtreecommitdiffstats
path: root/lib/AST
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2012-03-22 17:48:02 +0000
committerBob Wilson <bob.wilson@apple.com>2012-03-22 17:48:02 +0000
commit0d4cb85130d91da61c45aecb9fd31c7097a7cfcc (patch)
treed19c77b0460b61eb8bc6fe7b190e3eccd4878697 /lib/AST
parent2df089d4d8d47c3d0d43325d5bb69ec49147f81f (diff)
Fix a comment: kPropertyType = 'T' not 't'. <rdar://problem/11095729>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153264 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST')
-rw-r--r--lib/AST/ASTContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp
index f62418b11a..15f85ba9c4 100644
--- a/lib/AST/ASTContext.cpp
+++ b/lib/AST/ASTContext.cpp
@@ -4201,7 +4201,7 @@ bool ASTContext::getObjCEncodingForMethodDecl(const ObjCMethodDecl *Decl,
/// kPropertyGetter = 'G', // followed by getter selector name
/// kPropertySetter = 'S', // followed by setter selector name
/// kPropertyInstanceVariable = 'V' // followed by instance variable name
-/// kPropertyType = 't' // followed by old-style type encoding.
+/// kPropertyType = 'T' // followed by old-style type encoding.
/// kPropertyWeak = 'W' // 'weak' property
/// kPropertyStrong = 'P' // property GC'able
/// kPropertyNonAtomic = 'N' // property non-atomic