[llvm] a28b65b - [docs] fix typo in Lexicon.rst

Alex Zinenko via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 24 00:52:04 PST 2019


Author: Alex Zinenko
Date: 2019-12-24T09:47:15+01:00
New Revision: a28b65b27922b49cbc7bfba5b35cc5ebe7340373

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

LOG: [docs] fix typo in Lexicon.rst

Differential revision: https://reviews.llvm.org/D71844

Added: 
    

Modified: 
    llvm/docs/Lexicon.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst
index e1f374281f46..d42ce90730f1 100644
--- a/llvm/docs/Lexicon.rst
+++ b/llvm/docs/Lexicon.rst
@@ -64,10 +64,10 @@ C
 
 **CSE**
     Common Subexpression Elimination. An optimization that removes common
-    subexpression compuation. For example ``(a+b)*(a+b)`` has two subexpressions
-    that are the same: ``(a+b)``. This optimization would perform the addition
-    only once and then perform the multiply (but only if it's computationally
-    correct/safe).
+    subexpression computation. For example ``(a+b)*(a+b)`` has two
+    subexpressions that are the same: ``(a+b)``. This optimization would
+    perform the addition only once and then perform the multiply (but only if
+    it's computationally correct/safe).
 
 D
 -


        


More information about the llvm-commits mailing list