summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2014-06-26 22:18:51 +0000
committerSanjay Patel <spatel@rotateright.com>2014-06-26 22:18:51 +0000
commit3259c25b3a068ac930bcc627076056bb83f12db9 (patch)
tree907ae8993e19c78d85b98ed4ea44dc8dd78f86c0 /docs
parent9ad9c967556cdb7adb7c61dad694aa67c94e84bc (diff)
downloadllvm-3259c25b3a068ac930bcc627076056bb83f12db9.tar.gz
llvm-3259c25b3a068ac930bcc627076056bb83f12db9.tar.bz2
llvm-3259c25b3a068ac930bcc627076056bb83f12db9.tar.xz
fixed typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211808 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Lexicon.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Lexicon.rst b/docs/Lexicon.rst
index 11f1341f5c..fccfd5f85d 100644
--- a/docs/Lexicon.rst
+++ b/docs/Lexicon.rst
@@ -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