diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-03-06 17:53:29 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-03-07 08:34:55 +0100 |
commit | 99fe579d8f952512ca00ba81683dd51a45a86245 (patch) | |
tree | 0673b19358071cb21846b335f1f094c7b032260a /compiler/specialise | |
parent | 5dddf3546809c332a3de1e78a465798d2cb6eb94 (diff) | |
download | haskell-99fe579d8f952512ca00ba81683dd51a45a86245.tar.gz |
Typos in changelog and comments
Diffstat (limited to 'compiler/specialise')
-rw-r--r-- | compiler/specialise/SpecConstr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/specialise/SpecConstr.hs b/compiler/specialise/SpecConstr.hs index c2470bd644..71628410c8 100644 --- a/compiler/specialise/SpecConstr.hs +++ b/compiler/specialise/SpecConstr.hs @@ -777,7 +777,7 @@ But it is much better to specialise f for the case where the argument is of form (I# x); then we build the box only when returning y, which is on the cold path. -Another exmaple: +Another example: f x = ...(g x).... |