summaryrefslogtreecommitdiff
path: root/compiler/GHC/Tc/Gen/Foreign.hs
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2022-09-14 16:23:48 +0200
committerKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2022-09-14 17:25:11 +0200
commitb52f59369a7b986e8b3389b30025a3f010b736cb (patch)
treea1b9b74199c548db3c0ba0545e6eb67a0b1965f7 /compiler/GHC/Tc/Gen/Foreign.hs
parent7d7e71b03f4b2eb693f5ea69dadbccf491e7403f (diff)
downloadhaskell-wip/typos2.tar.gz
Fix typoswip/typos2
Diffstat (limited to 'compiler/GHC/Tc/Gen/Foreign.hs')
-rw-r--r--compiler/GHC/Tc/Gen/Foreign.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Tc/Gen/Foreign.hs b/compiler/GHC/Tc/Gen/Foreign.hs
index 57b30c9548..b8899e2431 100644
--- a/compiler/GHC/Tc/Gen/Foreign.hs
+++ b/compiler/GHC/Tc/Gen/Foreign.hs
@@ -198,7 +198,7 @@ used even though it is not mentioned expclitly in the source, so we don't
want to report it as "defined but not used" or "imported but not used".
eg newtype D = MkD Int
foreign import foo :: D -> IO ()
-Here 'MkD' us used. See #7408.
+Here 'MkD' is used. See #7408.
GHC also expands type functions during this process, so it's not enough
just to look at the free variables of the declaration.