summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorHiroshi Inoue <inouehrs@jp.ibm.com>2018-01-26 08:15:29 +0000
committerHiroshi Inoue <inouehrs@jp.ibm.com>2018-01-26 08:15:29 +0000
commit8040eab58948470e391cf39ad04e86c3f755260f (patch)
tree1b90c06a3af2474fdaf3d2a988d6a7ed8e181561 /docs/tutorial
parentf80c9bf237748843d36e12881e8081ef2c9b0d39 (diff)
[NFC] fix trivial typos in comments and documents
"in in" -> "in", "on on" -> "on" etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@323508 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/OCamlLangImpl1.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/OCamlLangImpl1.rst b/docs/tutorial/OCamlLangImpl1.rst
index 9de92305a1c..3fed61d2d4e 100644
--- a/docs/tutorial/OCamlLangImpl1.rst
+++ b/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.