InitMCProcessor
[oota-llvm.git] / include / llvm / MC / MCParser / MCAsmLexer.h
index ca163c50e3ceea1f180e57e81dc8f2987c336aa7..1613a0e2f91eec7f531ac65c897bea90fa68e532 100644 (file)
@@ -170,10 +170,10 @@ public:
   /// getKind - Get the kind of current token.
   AsmToken::TokenKind getKind() const { return CurTok.getKind(); }
 
-  /// is - Check if the current token has kind \arg K.
+  /// is - Check if the current token has kind \p K.
   bool is(AsmToken::TokenKind K) const { return CurTok.is(K); }
 
-  /// isNot - Check if the current token has kind \arg K.
+  /// isNot - Check if the current token has kind \p K.
   bool isNot(AsmToken::TokenKind K) const { return CurTok.isNot(K); }
 };