From fc12c3558efccf9b0338f4b7bb950e2a641c6fda Mon Sep 17 00:00:00 2001 From: Brian Gesiak Date: Sun, 17 Nov 2019 21:35:02 -0500 Subject: [PATCH] [docs] Fix broken links in Kaleidoscope chapter 3 Several links in this document referred to `LangImpl4.html` or `LangImpl7.html`. However, now these pages use two digits, so for these links to function they need to be modified to `LangImpl04.html`, and so on -- note the extra `0`. --- docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst index 25cae13415c..50e8c44bfc1 100644 --- a/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst @@ -150,8 +150,8 @@ values that can be in the ``NamedValues`` map are function arguments. This code simply checks to see that the specified name is in the map (if not, an unknown variable is being referenced) and returns the value for it. In future chapters, we'll add support for `loop induction -variables `_ in the symbol table, and for `local -variables `_. +variables `_ in the symbol table, and for `local +variables `_. .. code-block:: c++ @@ -436,10 +436,10 @@ at the LLVM IR for simple functions. For example: Note how the parser turns the top-level expression into anonymous functions for us. This will be handy when we add `JIT -support `_ in the next chapter. Also note that the +support `_ in the next chapter. Also note that the code is very literally transcribed, no optimizations are being performed except simple constant folding done by IRBuilder. We will `add -optimizations `_ explicitly in the next +optimizations `_ explicitly in the next chapter. ::