about summary refs log tree commit diff homepage
path: root/include/expr
diff options
context:
space:
mode:
Diffstat (limited to 'include/expr')
-rw-r--r--include/expr/Lexer.h2
-rw-r--r--include/expr/Parser.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/expr/Lexer.h b/include/expr/Lexer.h
index 6cce8031..9319b487 100644
--- a/include/expr/Lexer.h
+++ b/include/expr/Lexer.h
@@ -72,7 +72,7 @@ namespace expr {
     void dump();
   };
 
-  /// Lexer - Interface for lexing tokens from a .pc language file.
+  /// Lexer - Interface for lexing tokens from a .kquery language file.
   class Lexer {
     const char *BufferPos;      /// The current lexer position.
     const char *BufferEnd;      /// The buffer end position.
diff --git a/include/expr/Parser.h b/include/expr/Parser.h
index a9133e9d..fa07bae2 100644
--- a/include/expr/Parser.h
+++ b/include/expr/Parser.h
@@ -202,7 +202,7 @@ namespace expr {
     static bool classof(const QueryCommand *) { return true; }
   };
   
-  /// Parser - Public interface for parsing a .pc language file.
+  /// Parser - Public interface for parsing a .kquery language file.
   class Parser {
   protected:
     Parser();