diff options
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl1.rst b/llvm/docs/tutorial/OCamlLangImpl1.rst index 9de92305a1c..3fed61d2d4e 100644 --- a/llvm/docs/tutorial/OCamlLangImpl1.rst +++ b/llvm/docs/tutorial/OCamlLangImpl1.rst @@ -193,7 +193,7 @@ as: ``Lexer.lex`` works by recursing over a ``char Stream.t`` to read characters one at a time from the standard input. It eats them as it -recognizes them and stores them in in a ``Token.token`` variant. The +recognizes them and stores them in a ``Token.token`` variant. The first thing that it has to do is ignore whitespace between tokens. This is accomplished with the recursive call above. |