From 2c9f05a38ef64cbaeeae6429cd0e245c27944660 Mon Sep 17 00:00:00 2001 From: Teddy Date: Thu, 8 Aug 2013 18:27:03 +0800 Subject: rectified some names --- parser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parser.h') 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 -- cgit v1.2.3