diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-05 22:36:19 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-05 22:36:19 +0000 |
commit | 9482a4f0feca4bc9eb7c6ad36e21cbf7365f5359 (patch) | |
tree | aa2c7ff5683a4285736d43e621139166893457d9 | |
parent | ae6f6fd1527a1da84679a6f0439dec3bbbd6ca7b (diff) |
Fixed a comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60611 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/DeclObjC.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp index d873ad0746..58d0383d1f 100644 --- a/lib/AST/DeclObjC.cpp +++ b/lib/AST/DeclObjC.cpp @@ -730,8 +730,8 @@ ObjCPropertyImplDecl *ObjCImplementationDecl::FindPropertyImplDecl(IdentifierInf } /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of -/// properties implemented in this @implementation block and returns it if -/// found. +/// properties implemented in this @implementation block and returns the +/// implemented property that uses it. /// ObjCPropertyImplDecl *ObjCImplementationDecl::FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const { for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) { @@ -744,8 +744,8 @@ ObjCPropertyImplDecl *ObjCImplementationDecl::FindPropertyImplIvarDecl(Identifie } /// FindPropertyImplIvarDecl - This method lookup the ivar in the list of -/// properties implemented in this category @implementation block and returns it if -/// found. +/// properties implemented in this category @implementation block and returns the +/// implemented property that uses it. /// ObjCPropertyImplDecl *ObjCCategoryImplDecl::FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const { for (propimpl_iterator i = propimpl_begin(), e = propimpl_end(); i != e; ++i) { |