summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-02-27 13:54:01 +0000
committerDuncan Sands <baldrick@free.fr>2011-02-27 13:54:01 +0000
commit60c8bf5350c475e28e727737cb1d721b50c06409 (patch)
treecd93a512492c4d054b7a30318d10bddc489b0a76 /docs/tutorial
parentf67cf018abb6f562e7d1044c31d24ca443139218 (diff)
downloadllvm-60c8bf5350c475e28e727737cb1d721b50c06409.tar.gz
llvm-60c8bf5350c475e28e727737cb1d721b50c06409.tar.bz2
llvm-60c8bf5350c475e28e727737cb1d721b50c06409.tar.xz
Fix typo pointed out in pr9339.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/LangImpl5.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl5.html b/docs/tutorial/LangImpl5.html
index 3edb621fb6..166b74a4dd 100644
--- a/docs/tutorial/LangImpl5.html
+++ b/docs/tutorial/LangImpl5.html
@@ -72,7 +72,7 @@ have an if/then/else expression plus a simple 'for' loop.</p>
<p>
Extending Kaleidoscope to support if/then/else is quite straightforward. It
-basically requires adding lexer support for this "new" concept to the lexer,
+basically requires adding support for this "new" concept to the lexer,
parser, AST, and LLVM code emitter. This example is nice, because it shows how
easy it is to "grow" a language over time, incrementally extending it as new
ideas are discovered.</p>