aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/tutorial/MyFirstLanguageFrontend
diff options
context:
space:
mode:
authorChris Morin <chris.morin2@gmail.com>2020-07-20 15:51:09 -0700
committerserge-sans-paille <sguelton@redhat.com>2020-07-21 17:28:24 +0200
commit28da5759bd5a1009fe61303393b8a1633eeab4d7 (patch)
tree47801cf087c51b32d471f9fe6e1d51467593c344 /llvm/docs/tutorial/MyFirstLanguageFrontend
parent4f029d1be4e19270416637327f56668744e64b5c (diff)
downloadllvm-28da5759bd5a1009fe61303393b8a1633eeab4d7.zip
llvm-28da5759bd5a1009fe61303393b8a1633eeab4d7.tar.gz
llvm-28da5759bd5a1009fe61303393b8a1633eeab4d7.tar.bz2
Fix typo in tutorial
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r--llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
index 32472e3..c37c960 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
@@ -67,7 +67,7 @@ way to model this. Again, this tutorial won't dwell on good software
engineering practices: for our purposes, adding a virtual method is
simplest.
-The second thing we want is an "LogError" method like we used for the
+The second thing we want is a "LogError" method like we used for the
parser, which will be used to report errors found during code generation
(for example, use of an undeclared parameter):