summaryrefslogtreecommitdiff
path: root/docs/tutorial/LangImpl2.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-25 18:05:29 +0000
committerChris Lattner <sabre@nondot.org>2007-10-25 18:05:29 +0000
commite949512dfabaa68d53c37238918794a687d0fc9d (patch)
treeade9c224decde74851d30f66048bb6cb145303a6 /docs/tutorial/LangImpl2.html
parent7271423a99c1f8417f94fc31d28130de8d427206 (diff)
downloadllvm-e949512dfabaa68d53c37238918794a687d0fc9d.tar.gz
llvm-e949512dfabaa68d53c37238918794a687d0fc9d.tar.bz2
llvm-e949512dfabaa68d53c37238918794a687d0fc9d.tar.xz
typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl2.html')
-rw-r--r--docs/tutorial/LangImpl2.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html
index 340a6193a9..d364f4de3e 100644
--- a/docs/tutorial/LangImpl2.html
+++ b/docs/tutorial/LangImpl2.html
@@ -192,7 +192,7 @@ static int getNextToken() {
<p>
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.</p>
<p>Again, we define these with global variables; it would be better design to