fit in 80 cols :)
authorChris Lattner <sabre@nondot.org>
Mon, 22 Oct 2007 16:44:31 +0000 (16:44 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 22 Oct 2007 16:44:31 +0000 (16:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43222 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl2.html

index 653975cd8be684b8a0bc2d73b83013f52a4ac152..e6c53dafaab452d2472bacdf3bbd14f6e4cddba8 100644 (file)
@@ -195,7 +195,8 @@ 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
 parsed.</p>
 
-<p>Again, we define these with global variables; it would be better design to wrap the entire parser in a class and use instance variables for these.
+<p>Again, we define these with global variables; it would be better design to 
+wrap the entire parser in a class and use instance variables for these.
 </p>
 
 <div class="doc_code">