summaryrefslogtreecommitdiff
path: root/compiler/GHC/Tc/TyCl/Instance.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/TyCl/Instance.hs
parent7d7e71b03f4b2eb693f5ea69dadbccf491e7403f (diff)
downloadhaskell-wip/typos2.tar.gz
Fix typoswip/typos2
Diffstat (limited to 'compiler/GHC/Tc/TyCl/Instance.hs')
-rw-r--r--compiler/GHC/Tc/TyCl/Instance.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Tc/TyCl/Instance.hs b/compiler/GHC/Tc/TyCl/Instance.hs
index 86b8626d50..879280d203 100644
--- a/compiler/GHC/Tc/TyCl/Instance.hs
+++ b/compiler/GHC/Tc/TyCl/Instance.hs
@@ -1132,7 +1132,7 @@ But what about this?
So what kind do 'p' and 'q' have? No clues from the header, but from
the data constructor we can clearly see that (r :: Type->Type). Does
-that mean that the the /entire data instance/ is instantiated at Type,
+that mean that the /entire data instance/ is instantiated at Type,
like this?
data instance T @Type (p :: Type->Type) (q :: Type) where
...