[PATCH] D71844: [docs] fix typo in Lexicon.rst

Oleksandr "Alex" Zinenko via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 23 09:26:55 PST 2019


ftynse created this revision.
ftynse added a reviewer: lattner.
ftynse added a project: LLVM.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D71844

Files:
  llvm/docs/Lexicon.rst


Index: llvm/docs/Lexicon.rst
===================================================================
--- llvm/docs/Lexicon.rst
+++ llvm/docs/Lexicon.rst
@@ -64,10 +64,10 @@
 
 **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
 -


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D71844.235155.patch
Type: text/x-patch
Size: 786 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191223/01aa6a62/attachment.bin>


More information about the llvm-commits mailing list