summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2016-05-01 03:14:29 -0400
committerÖmer Sinan Ağacan <omeragacan@gmail.com>2016-05-01 03:14:29 -0400
commitf69e7078930ea0f80dbd3a0d1a4b89db83a32a32 (patch)
tree3a2c21649a83c0b4477617fa56de70277b20ce88
parent49bae464abbbc1473fa7480ef1951e0a76019d07 (diff)
downloadhaskell-f69e7078930ea0f80dbd3a0d1a4b89db83a32a32.tar.gz
Typos in DmdAnal
-rw-r--r--compiler/stranal/DmdAnal.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/stranal/DmdAnal.hs b/compiler/stranal/DmdAnal.hs
index 9a8999a72d..53144fff10 100644
--- a/compiler/stranal/DmdAnal.hs
+++ b/compiler/stranal/DmdAnal.hs
@@ -1301,7 +1301,7 @@ See section 9.2 (Finding fixpoints) of the paper.
Our basic plan is to initialise the strictness of each Id in a
recursive group to "bottom", and find a fixpoint from there. However,
-this group B might be inside an *enclosing* recursiveb group A, in
+this group B might be inside an *enclosing* recursive group A, in
which case we'll do the entire fixpoint shebang on for each iteration
of A. This can be illustrated by the following example:
@@ -1345,7 +1345,7 @@ which is quite a lie.
The once-used information is (currently) only used by the code
generator, though. So:
- * We zap the used-once info in the woker-wrapper;
+ * We zap the used-once info in the worker-wrapper;
see Note [Zapping Used Once info in WorkWrap] in WorkWrap. If it's
not reliable, it's better not to have it at all.