summaryrefslogtreecommitdiff
path: root/docs/tutorial/OCamlLangImpl1.html
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2008-10-29 16:32:06 +0000
committerTorok Edwin <edwintorok@gmail.com>2008-10-29 16:32:06 +0000
commit90e619afbef9886c65650d0464e3cc87deb8c298 (patch)
treefc69986bce6afa925c8ad96c6725edfd766bc5ba /docs/tutorial/OCamlLangImpl1.html
parentf258b02abed915e2fadb2af2a4341486e403d104 (diff)
downloadllvm-90e619afbef9886c65650d0464e3cc87deb8c298.tar.gz
llvm-90e619afbef9886c65650d0464e3cc87deb8c298.tar.bz2
llvm-90e619afbef9886c65650d0464e3cc87deb8c298.tar.xz
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/OCamlLangImpl1.html')
-rw-r--r--docs/tutorial/OCamlLangImpl1.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/OCamlLangImpl1.html b/docs/tutorial/OCamlLangImpl1.html
index c7b0954021..77b492fd5e 100644
--- a/docs/tutorial/OCamlLangImpl1.html
+++ b/docs/tutorial/OCamlLangImpl1.html
@@ -252,7 +252,7 @@ it has to do is ignore whitespace between tokens. This is accomplished with the
recursive call above.</p>
<p>The next thing <tt>Lexer.lex</tt> needs to do is recognize identifiers and
-specific keywords like "def". Kaleidoscope does this with this a pattern match
+specific keywords like "def". Kaleidoscope does this with a pattern match
and a helper function.<p>
<div class="doc_code">