summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2006-10-18 11:23:51 +0000
committersimonpj@microsoft.com <unknown>2006-10-18 11:23:51 +0000
commit1ee8a6f6cf3c06e3651438720333612a70348091 (patch)
tree409d5c226d9fc2b62b21a7bfd0928f2ab8d21687
parent0d1fca153fa5426d793a4b16acdf57e409b9193f (diff)
downloadhaskell-1ee8a6f6cf3c06e3651438720333612a70348091.tar.gz
Spelling in comment
-rw-r--r--compiler/simplCore/CSE.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/simplCore/CSE.lhs b/compiler/simplCore/CSE.lhs
index de5763b9fd..e7dd217523 100644
--- a/compiler/simplCore/CSE.lhs
+++ b/compiler/simplCore/CSE.lhs
@@ -157,7 +157,7 @@ bar will be inlined (when it should not be). Even if we remove INLINE foo,
we'd still like foo to be inlined if rhs is small. This won't happen
with foo = bar.
-Not CSE-ing inside INLLINE also solves an annoying bug in CSE. Consider
+Not CSE-ing inside INLINE also solves an annoying bug in CSE. Consider
a worker/wrapper, in which the worker has turned into a single variable:
$wf = h
f = \x -> ...$wf...