Typo.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 31 Dec 2006 03:44:08 +0000 (03:44 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 31 Dec 2006 03:44:08 +0000 (03:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32774 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Stacker.html

index 8bdf68ea6b0753c7c8497e5a2ddd2d429b9e2e28..51446edfca824a9b8c951be729abf9aea4df32ea 100644 (file)
@@ -198,7 +198,7 @@ should be constructed. In general, here's what I learned:
     <li><em>Create your blocks early.</em> While writing your compiler, you 
     will encounter several situations where you know apriori that you will
     need several blocks. For example, if-then-else, switch, while, and for
-    statements in C/C++ all need multiple blocks for expression in LVVM. 
+    statements in C/C++ all need multiple blocks for expression in LLVM. 
     The rule is, create them early.</li>
     <li><em>Terminate your blocks early.</em> This just reduces the chances 
     that you forget to terminate your blocks which is required (go