aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-12 08:17:45 +0000
committerChris Lattner <sabre@nondot.org>2007-12-12 08:17:45 +0000
commit33ef2590b982c626e5c645a97f8e4ca160cd8f98 (patch)
tree45d697f52906a5145d91aa419661ac7ad63074ad
parentbe6df088d69bca0e99c7845a6cd8c1ca85034f31 (diff)
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44932 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--AST/Decl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/AST/Decl.cpp b/AST/Decl.cpp
index f986c63014..711b3257ec 100644
--- a/AST/Decl.cpp
+++ b/AST/Decl.cpp
@@ -406,7 +406,7 @@ ObjcIvarDecl *ObjcInterfaceDecl::lookupInstanceVariable(
}
/// lookupInstanceMethod - This method returns an instance method by looking in
-/// the class, it's categories, and it's super classes (using a linear search).
+/// the class, its categories, and its super classes (using a linear search).
ObjcMethodDecl *ObjcInterfaceDecl::lookupInstanceMethod(Selector &Sel) {
ObjcInterfaceDecl* ClassDecl = this;
while (ClassDecl != NULL) {
@@ -447,7 +447,7 @@ ObjcMethodDecl *ObjcInterfaceDecl::lookupInstanceMethod(Selector &Sel) {
}
// lookupClassMethod - This method returns a class method by looking in the
-// class, it's categories, and it's super classes (using a linear search).
+// class, its categories, and its super classes (using a linear search).
ObjcMethodDecl *ObjcInterfaceDecl::lookupClassMethod(Selector &Sel) {
ObjcInterfaceDecl* ClassDecl = this;
while (ClassDecl != NULL) {