From: Chris Lattner Date: Wed, 12 Dec 2007 08:17:45 +0000 (+0000) Subject: fix typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33ef2590b982c626e5c645a97f8e4ca160cd8f98;p=clang fix typo git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44932 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {