From 28da5759bd5a1009fe61303393b8a1633eeab4d7 Mon Sep 17 00:00:00 2001 From: Chris Morin Date: Mon, 20 Jul 2020 15:51:09 -0700 Subject: [PATCH] Fix typo in tutorial --- llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.7.4