diff options
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl3.rst | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl3.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl3.rst b/llvm/docs/tutorial/LangImpl3.rst index b7418ccf32a..26ba4aae956 100644 --- a/llvm/docs/tutorial/LangImpl3.rst +++ b/llvm/docs/tutorial/LangImpl3.rst @@ -85,7 +85,7 @@ structure that the LLVM IR uses to contain code. The ``Builder`` object is a helper object that makes it easy to generate LLVM instructions. Instances of the -```IRBuilder`` <http://llvm.org/doxygen/IRBuilder_8h-source.html>`_ +`IRBuilder <http://llvm.org/doxygen/IRBuilder_8h-source.html>`_ class template keep track of the current place to insert instructions and has methods to create new instructions. diff --git a/llvm/docs/tutorial/OCamlLangImpl3.rst b/llvm/docs/tutorial/OCamlLangImpl3.rst index fd9f0e5cd3f..10d463b93ac 100644 --- a/llvm/docs/tutorial/OCamlLangImpl3.rst +++ b/llvm/docs/tutorial/OCamlLangImpl3.rst @@ -65,7 +65,7 @@ the top-level structure that the LLVM IR uses to contain code. The ``Codegen.builder`` object is a helper object that makes it easy to generate LLVM instructions. Instances of the -```IRBuilder`` <http://llvm.org/doxygen/IRBuilder_8h-source.html>`_ +`IRBuilder <http://llvm.org/doxygen/IRBuilder_8h-source.html>`_ class keep track of the current place to insert instructions and has methods to create new instructions. |