diff options
author | Gabor Greif <ggreif@gmail.com> | 2016-07-22 00:32:28 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2016-07-22 00:41:12 +0200 |
commit | bbf36f89c7ddee9ec63b12fe735cc758de4e3da2 (patch) | |
tree | 807fdde580624b2b3fd852b59a8ad85bb3ef6b23 /compiler/specialise | |
parent | e710f8f52a66d0666ed681049e17902b3d12bb39 (diff) | |
download | haskell-bbf36f89c7ddee9ec63b12fe735cc758de4e3da2.tar.gz |
More typos in comments
Diffstat (limited to 'compiler/specialise')
-rw-r--r-- | compiler/specialise/Specialise.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/specialise/Specialise.hs b/compiler/specialise/Specialise.hs index 644ecc7d43..72118aa171 100644 --- a/compiler/specialise/Specialise.hs +++ b/compiler/specialise/Specialise.hs @@ -2307,12 +2307,12 @@ is used: Now give it to the simplifier and the _Lifting will be optimised away. -The benfit is that we have given the specialised "unboxed" values a -very simplep lifted semantics and then leave it up to the simplifier to +The benefit is that we have given the specialised "unboxed" values a +very simple lifted semantics and then leave it up to the simplifier to optimise it --- knowing that the overheads will be removed in nearly all cases. -In particular, the value will only be evaluted in the branches of the +In particular, the value will only be evaluated in the branches of the program which use it, rather than being forced at the point where the value is bound. For example: |