diff options
author | Torok Edwin <edwintorok@gmail.com> | 2008-10-29 16:32:06 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2008-10-29 16:32:06 +0000 |
commit | 49c28e4599552a74a5743ff54c892bb1443bab9b (patch) | |
tree | a4177226bbe8cedfbf6034cb149633fc6a5c99f6 /llvm/docs/tutorial | |
parent | f33c3bc51fcfbd2f4663d732fcc157accf98b5ef (diff) | |
download | bcm5719-llvm-49c28e4599552a74a5743ff54c892bb1443bab9b.tar.gz bcm5719-llvm-49c28e4599552a74a5743ff54c892bb1443bab9b.zip |
fix typo
llvm-svn: 58384
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl1.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl1.html b/llvm/docs/tutorial/OCamlLangImpl1.html index c7b0954021e..77b492fd5eb 100644 --- a/llvm/docs/tutorial/OCamlLangImpl1.html +++ b/llvm/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"> |