Skip to content

Commit

Permalink
updates, clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
cptaffe committed Oct 26, 2014
1 parent 70cb44a commit dd351af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) {
lex *l = new lex(stdin);
parse *p = new parse(l->getQue());

// launch lexer & parser as threads
// launch lexer, parser & evaluator as threads
thread lexer (&lex::lexLine, l);
thread parser (&parse::parseLine, p);
thread eval (&Evaluate, p->objs);
Expand Down

0 comments on commit dd351af

Please sign in to comment.