[llvm] 9c9157b - Fix typo in LangImpl03.rst (#127389)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 04:11:40 PST 2025
Author: Dinu Blanovschi
Date: 2025-02-17T12:11:36Z
New Revision: 9c9157b25662cedd63426f02cdbde7853454b38e
URL: https://github.com/llvm/llvm-project/commit/9c9157b25662cedd63426f02cdbde7853454b38e
DIFF: https://github.com/llvm/llvm-project/commit/9c9157b25662cedd63426f02cdbde7853454b38e.diff
LOG: Fix typo in LangImpl03.rst (#127389)
Added:
Modified:
llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
Removed:
################################################################################
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
index f41c5ed0ad0cd..001a314cb1331 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
More information about the llvm-commits
mailing list