]> granicus.if.org Git - clang/commitdiff
Fix comments: "class method" should be "instance method" and vis versa
authorTed Kremenek <kremenek@apple.com>
Tue, 24 Jun 2008 04:44:10 +0000 (04:44 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 24 Jun 2008 04:44:10 +0000 (04:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52669 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/ExprObjC.h

index 12c5afc80a1544e1040eff29218d2909ca63a7ec..03c96f1757f2a0f536452f1f063f8a4d0d14dcdd 100644 (file)
@@ -266,8 +266,8 @@ public:
   }
   
   /// getReceiver - Returns the receiver of the message expression.
-  ///  This can be NULL if the message is for instance methods.  For
-  ///  instance methods, use getClassName.
+  ///  This can be NULL if the message is for class methods.  For
+  ///  class methods, use getClassName.
   Expr *getReceiver() { 
     uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
     return x & 0x1 ? NULL : (Expr*) x;
@@ -281,8 +281,8 @@ public:
   const ObjCMethodDecl *getMethodDecl() const { return MethodProto; }
   ObjCMethodDecl *getMethodDecl() { return MethodProto; }
   
-  /// getClassName - For instance methods, this returns the invoked class,
-  ///  and returns NULL otherwise.  For regular methods, use getReceiver.  
+  /// getClassName - For class methods, this returns the invoked class,
+  ///  and returns NULL otherwise.  For instance methods, use getReceiver.  
   IdentifierInfo *getClassName() {
     uintptr_t x = (uintptr_t) SubExprs[RECEIVER];
     return x & 0x1 ? (IdentifierInfo*) (x & ~0x1) : NULL;