diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-22 16:44:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-22 16:44:31 +0000 |
commit | 55e6e7afe730464810122fac75cb013db46e8f4f (patch) | |
tree | 0ebe5ee6f03f966b2636d0866f61cb81e9f86062 /docs | |
parent | 212063d69254021817c3f0084d73049bb72f7997 (diff) | |
download | external_llvm-55e6e7afe730464810122fac75cb013db46e8f4f.zip external_llvm-55e6e7afe730464810122fac75cb013db46e8f4f.tar.gz external_llvm-55e6e7afe730464810122fac75cb013db46e8f4f.tar.bz2 |
fit in 80 cols :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial/LangImpl2.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 653975c..e6c53da 100644 --- a/docs/tutorial/LangImpl2.html +++ b/docs/tutorial/LangImpl2.html @@ -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"> |