diff options
-rw-r--r-- | AST/Decl.cpp | 4 |
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) { |