]> granicus.if.org Git - clang/commitdiff
Fixed a comment.
authorFariborz Jahanian <fjahanian@apple.com>
Fri, 5 Dec 2008 22:36:19 +0000 (22:36 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Fri, 5 Dec 2008 22:36:19 +0000 (22:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60611 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/DeclObjC.cpp

index d873ad0746be4b60ac0f133ebbbac11120df9c27..58d0383d1fe3fb267a3917cdf49dbe627920530a 100644 (file)
@@ -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) {