[llvm] 114a890 - [docs] Fix typo in tutorial

Bill Wendling via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 16 11:44:39 PDT 2022


Author: Bill Wendling
Date: 2022-03-16T11:44:23-07:00
New Revision: 114a8903b86929f621c6b00f15e549931d912737

URL: https://github.com/llvm/llvm-project/commit/114a8903b86929f621c6b00f15e549931d912737
DIFF: https://github.com/llvm/llvm-project/commit/114a8903b86929f621c6b00f15e549931d912737.diff

LOG: [docs] Fix typo in tutorial

Use "operands" instead of "operators"

Closes #54397

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 7170b0fb25de0..fb23f9fe3f18b 100644
--- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
+++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.rst
@@ -197,7 +197,7 @@ suffix. Local value names for instructions are purely optional, but it
 makes it much easier to read the IR dumps.
 
 `LLVM instructions <../../LangRef.html#instruction-reference>`_ are constrained by strict
-rules: for example, the Left and Right operators of an `add
+rules: for example, the Left and Right operands of an `add
 instruction <../../LangRef.html#add-instruction>`_ must have the same type, and the
 result type of the add must match the operand types. Because all values
 in Kaleidoscope are doubles, this makes for very simple code for add,


        


More information about the llvm-commits mailing list