diff options
author | Gabor Greif <ggreif@gmail.com> | 2016-03-30 11:04:37 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2016-03-30 11:04:37 +0200 |
commit | a76e6f55c28a176c175b45b7279a1d20286bf56b (patch) | |
tree | d8d984e9853e6b9299886bf624539a844a2e7242 /compiler/simplCore/CallArity.hs | |
parent | cb9a1e6875ac636f7c150ffacc272a2594a192dc (diff) | |
download | haskell-a76e6f55c28a176c175b45b7279a1d20286bf56b.tar.gz |
Typos in non-code
Diffstat (limited to 'compiler/simplCore/CallArity.hs')
-rw-r--r-- | compiler/simplCore/CallArity.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/simplCore/CallArity.hs b/compiler/simplCore/CallArity.hs index bd997c3676..e172aefcd7 100644 --- a/compiler/simplCore/CallArity.hs +++ b/compiler/simplCore/CallArity.hs @@ -353,7 +353,7 @@ We never eta-expand a thunk in a recursive group, on the grounds that if it is part of a recursive group, then it will be called multipe times. This is not necessarily true, e.g. it would be safe to eta-expand t2 (but not -t1) in the follwing code: +t1) in the following code: let go x = t1 t1 = if ... then t2 else ... |