fixed typo
authorSanjay Patel <spatel@rotateright.com>
Thu, 26 Jun 2014 22:18:51 +0000 (22:18 +0000)
committerSanjay Patel <spatel@rotateright.com>
Thu, 26 Jun 2014 22:18:51 +0000 (22:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211808 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Lexicon.rst

index 11f1341f5cbd62e49dc5b0c0898577d999ae9535..fccfd5f85d8d7781be816edb64980e3149482ba0 100644 (file)
@@ -50,7 +50,7 @@ C
     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 compulationally
+    only once and then perform the multiply (but only if it's computationally
     correct/safe).
 
 D