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 | 37a3cf20ed9cc9119b2b63939c14f68e8e12ef32 (patch) | |
tree | ade9c224decde74851d30f66048bb6cb145303a6 /docs | |
parent | 861c7ca20b0027892430e8ba6b68f45a1f79889c (diff) | |
download | external_llvm-37a3cf20ed9cc9119b2b63939c14f68e8e12ef32.zip external_llvm-37a3cf20ed9cc9119b2b63939c14f68e8e12ef32.tar.gz external_llvm-37a3cf20ed9cc9119b2b63939c14f68e8e12ef32.tar.bz2 |
typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/LangImpl2.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 340a619..d364f4d 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 |