[cfe-commits] r120004 - /cfe/trunk/include/clang/AST/Expr.h
    Zhanyong Wan 
    wan at google.com
       
    Mon Nov 22 22:43:05 PST 2010
    
    
  
Author: wan
Date: Tue Nov 23 00:43:05 2010
New Revision: 120004
URL: http://llvm.org/viewvc/llvm-project?rev=120004&view=rev
Log:
Fix a typo in a comment.
Modified:
    cfe/trunk/include/clang/AST/Expr.h
Modified: cfe/trunk/include/clang/AST/Expr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Expr.h?rev=120004&r1=120003&r2=120004&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Expr.h (original)
+++ cfe/trunk/include/clang/AST/Expr.h Tue Nov 23 00:43:05 2010
@@ -1178,7 +1178,7 @@
     return Op == UO_PostInc || Op == UO_PostDec;
   }
 
-  /// isPostfix - Return true if this is a prefix operation, like --x.
+  /// isPrefix - Return true if this is a prefix operation, like --x.
   static bool isPrefix(Opcode Op) {
     return Op == UO_PreInc || Op == UO_PreDec;
   }
    
    
More information about the cfe-commits
mailing list