From 9c9157b25662cedd63426f02cdbde7853454b38e Mon Sep 17 00:00:00 2001 From: Dinu Blanovschi Date: Mon, 17 Feb 2025 13:11:36 +0100 Subject: [PATCH] Fix typo in LangImpl03.rst (#127389) --- 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 f41c5ed0ad0c..001a314cb133 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst @@ -313,7 +313,7 @@ in "``TheModule``"s symbol table. Finally, we set the name of each of the function's arguments according to the names given in the Prototype. This step isn't strictly necessary, but keeping the names consistent makes the IR more readable, and allows subsequent code to -refer directly to the arguments for their names, rather than having to look up +refer directly to the arguments for their names, rather than having to look them up in the Prototype AST. At this point we have a function prototype with no body. This is how LLVM IR