fix typo
authorTorok Edwin <edwintorok@gmail.com>
Wed, 29 Oct 2008 16:32:06 +0000 (16:32 +0000)
committerTorok Edwin <edwintorok@gmail.com>
Wed, 29 Oct 2008 16:32:06 +0000 (16:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58384 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/OCamlLangImpl1.html

index c7b0954021e3cd3e74556c33cbc16d66cb06f050..77b492fd5eb7a1dfafb2c731cfb5454453056e22 100644 (file)
@@ -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">