]> granicus.if.org Git - clang/commitdiff
fix typo
authorChris Lattner <sabre@nondot.org>
Wed, 12 Dec 2007 08:17:45 +0000 (08:17 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 12 Dec 2007 08:17:45 +0000 (08:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44932 91177308-0d34-0410-b5e6-96231b3b80d8

AST/Decl.cpp

index f986c630149642f7d3cf8ab2539cdb5bbacfeb56..711b3257ec850766e278965a62a9d88170b4750c 100644 (file)
@@ -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) {