[llvm-commits] [llvm] r43351 - /llvm/trunk/docs/tutorial/LangImpl2.html

Chris Lattner sabre at nondot.org
Thu Oct 25 11:05:30 PDT 2007


Author: lattner
Date: Thu Oct 25 13:05:29 2007
New Revision: 43351

URL: http://llvm.org/viewvc/llvm-project?rev=43351&view=rev
Log:
typo

Modified:
    llvm/trunk/docs/tutorial/LangImpl2.html

Modified: llvm/trunk/docs/tutorial/LangImpl2.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl2.html?rev=43351&r1=43350&r2=43351&view=diff

==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl2.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl2.html Thu Oct 25 13:05:29 2007
@@ -192,7 +192,7 @@
 <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 





More information about the llvm-commits mailing list