aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/tutorial
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2022-03-16 11:42:32 -0700
committerBill Wendling <isanbard@gmail.com>2022-03-16 11:44:23 -0700
commit114a8903b86929f621c6b00f15e549931d912737 (patch)
tree038da285f8230554bd792ad5cfab9be80c7c8e8f /llvm/docs/tutorial
parent24f3d55a5aee57f4c53da70fdf266c147512b831 (diff)
downloadllvm-114a8903b86929f621c6b00f15e549931d912737.zip
llvm-114a8903b86929f621c6b00f15e549931d912737.tar.gz
llvm-114a8903b86929f621c6b00f15e549931d912737.tar.bz2
[docs] Fix typo in tutorial
Use "operands" instead of "operators" Closes #54397
Diffstat (limited to 'llvm/docs/tutorial')
-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 7170b0f..fb23f9f 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,