aboutsummaryrefslogtreecommitdiff
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser.h b/parser.h
index 11a03a5..e44abbc 100644
--- a/parser.h
+++ b/parser.h
@@ -31,7 +31,7 @@ class Tokenizor {
/** @class ASTGenerator
* Read the tokens and build up an Abstract Syntax Tree (which is in effect a
- * Cons)
+ * Pair)
*/
class ASTGenerator {
private:
@@ -43,7 +43,7 @@ class ASTGenerator {
* @param tk pointer to a Tokenizor
* @return Abstract Syntax Tree
*/
- Cons *absorb(Tokenizor *tk);
+ Pair *absorb(Tokenizor *tk);
};
#endif