diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 340a6193a99..d364f4de3e7 100644 --- a/docs/tutorial/LangImpl2.html +++ b/docs/tutorial/LangImpl2.html @@ -192,7 +192,7 @@ static int getNextToken() {

This implements a simple token buffer around the lexer. This allows us to look one token ahead at what the lexer is returning. Every function in -our lexer will assume that CurTok is the current token that needs to be +our parser will assume that CurTok is the current token that needs to be parsed.

Again, we define these with global variables; it would be better design to