diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-25 18:05:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-25 18:05:29 +0000 |
commit | 991b6b9d0c9b3193640de2a4c7f574f0df4288e5 (patch) | |
tree | 3db4cae0f79dbe37d9c427fc921ed23cb633edac /llvm/docs/tutorial/LangImpl2.html | |
parent | 76a2273f6eb4a9ec930749d70b3180fa82073640 (diff) | |
download | bcm5719-llvm-991b6b9d0c9b3193640de2a4c7f574f0df4288e5.tar.gz bcm5719-llvm-991b6b9d0c9b3193640de2a4c7f574f0df4288e5.zip |
typo
llvm-svn: 43351
Diffstat (limited to 'llvm/docs/tutorial/LangImpl2.html')
-rw-r--r-- | llvm/docs/tutorial/LangImpl2.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl2.html b/llvm/docs/tutorial/LangImpl2.html index 340a6193a99..d364f4de3e7 100644 --- a/llvm/docs/tutorial/LangImpl2.html +++ b/llvm/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 |