summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2008-12-05 22:36:19 +0000
committerFariborz Jahanian <fjahanian@apple.com>2008-12-05 22:36:19 +0000
commit9c196795e6436f3a2eafaa8a96a991d1f3d73bf7 (patch)
treebc951dd553db05e8c27ead08da11e438c25a1b01 /clang/lib/AST
parentfbbaf6afaea9715fdba1d2c868287b94eeae189c (diff)
downloadbcm5719-llvm-9c196795e6436f3a2eafaa8a96a991d1f3d73bf7.tar.gz
bcm5719-llvm-9c196795e6436f3a2eafaa8a96a991d1f3d73bf7.zip
Fixed a comment.
llvm-svn: 60611
Diffstat (limited to 'clang/lib/AST')
-rw-r--r--clang/lib/AST/DeclObjC.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp
index d873ad0746b..58d0383d1fe 100644
--- a/clang/lib/AST/DeclObjC.cpp
+++ b/clang/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) {
OpenPOWER on IntegriCloud