[cfe-commits] r44932 - /cfe/trunk/AST/Decl.cpp

Chris Lattner sabre at nondot.org
Wed Dec 12 00:17:51 PST 2007


Author: lattner
Date: Wed Dec 12 02:17:45 2007
New Revision: 44932

URL: http://llvm.org/viewvc/llvm-project?rev=44932&view=rev
Log:
fix typo

Modified:
    cfe/trunk/AST/Decl.cpp

Modified: cfe/trunk/AST/Decl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/AST/Decl.cpp?rev=44932&r1=44931&r2=44932&view=diff

==============================================================================
--- cfe/trunk/AST/Decl.cpp (original)
+++ cfe/trunk/AST/Decl.cpp Wed Dec 12 02:17:45 2007
@@ -406,7 +406,7 @@
 }
 
 /// 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 @@
 }
 
 // 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) {





More information about the cfe-commits mailing list