aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/Stacker.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Stacker.html b/docs/Stacker.html
index 8bdf68e..51446ed 100644
--- a/docs/Stacker.html
+++ b/docs/Stacker.html
@@ -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