diff options
Diffstat (limited to 'llvm/docs/tutorial/OCamlLangImpl2.rst')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl2.rst b/llvm/docs/tutorial/OCamlLangImpl2.rst index b6b15177f2c..f5d6cd6822c 100644 --- a/llvm/docs/tutorial/OCamlLangImpl2.rst +++ b/llvm/docs/tutorial/OCamlLangImpl2.rst @@ -130,7 +130,7 @@ We start with numeric literals, because they are the simplest to process. For each production in our grammar, we'll define a function which parses that production. We call this class of expressions "primary" expressions, for reasons that will become more clear `later in -the tutorial <OCamlLangImpl6.html#unary>`_. In order to parse an +the tutorial <OCamlLangImpl6.html#user-defined-unary-operators>`_. In order to parse an arbitrary primary expression, we need to determine what sort of expression it is. For numeric literals, we have: @@ -505,7 +505,7 @@ The Driver The driver for this simply invokes all of the parsing pieces with a top-level dispatch loop. There isn't much interesting here, so I'll just -include the top-level loop. See `below <#code>`_ for full code in the +include the top-level loop. See `below <#full-code-listing>`_ for full code in the "Top-Level Parsing" section. .. code-block:: ocaml |