diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2016-07-01 20:00:01 -0400 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2016-08-16 02:37:17 -0700 |
commit | d331ace4fd2a8728bb2c6ed829a0beb4fac6a76e (patch) | |
tree | 085738f0232e8f349bb062667315a0a523f729e3 | |
parent | f9a11a241b8056ac2b9c771172a48919fb3d0ed1 (diff) | |
download | haskell-d331ace4fd2a8728bb2c6ed829a0beb4fac6a76e.tar.gz |
Minor typofix.
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
-rw-r--r-- | compiler/types/TyCon.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/types/TyCon.hs b/compiler/types/TyCon.hs index 195c3a7505..d0ecb70f26 100644 --- a/compiler/types/TyCon.hs +++ b/compiler/types/TyCon.hs @@ -2281,7 +2281,7 @@ Notice that twice at the outer level, because Id is non-recursive So, when expanding, we keep track of when we've seen a recursive -newtype at outermost level; and bale out if we see it again. +newtype at outermost level; and bail out if we see it again. We sometimes want to do the same for product types, so that the strictness analyser doesn't unbox infinitely deeply. |