summaryrefslogtreecommitdiff
path: root/compiler/stranal
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-01-18 17:07:40 +0100
committerGabor Greif <ggreif@gmail.com>2017-01-18 17:46:45 +0100
commit70472bf2d862f976790f73e9dc7a0f3f7519ae1d (patch)
tree2d507cd90c936e32fb9ed73b8dfad27ba5762474 /compiler/stranal
parente324e317caab06fda232636c32e8a60d9e888a9c (diff)
downloadhaskell-70472bf2d862f976790f73e9dc7a0f3f7519ae1d.tar.gz
Spelling fixes in comments [ci skip]
Diffstat (limited to 'compiler/stranal')
-rw-r--r--compiler/stranal/WwLib.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/stranal/WwLib.hs b/compiler/stranal/WwLib.hs
index 1370bbce06..e342ea1abd 100644
--- a/compiler/stranal/WwLib.hs
+++ b/compiler/stranal/WwLib.hs
@@ -532,7 +532,7 @@ bug. The fix here is simply to decline to do w/w if that happens.
************************************************************************
* *
- Type scrutiny that is specfic to demand analysis
+ Type scrutiny that is specific to demand analysis
* *
************************************************************************
@@ -541,7 +541,7 @@ Note [Do not unpack class dictionaries]
If we have
f :: Ord a => [a] -> Int -> a
{-# INLINABLE f #-}
-and we worker/wrapper f, we'll get a worker with an INLINALBE pragma
+and we worker/wrapper f, we'll get a worker with an INLINABLE pragma
(see Note [Worker-wrapper for INLINABLE functions] in WorkWrap), which
can still be specialised by the type-class specialiser, something like
fw :: Ord a => [a] -> Int# -> a