summaryrefslogtreecommitdiff
path: root/compiler/typecheck/TcDerivInfer.hs
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2018-06-18 14:22:54 +0200
committerGabor Greif <ggreif@gmail.com>2018-06-18 14:41:54 +0200
commit6ac8a72f7a044f44734a0270487c3bb6fb186d53 (patch)
tree615d72e490c418f79f4fb18d1453412394247af2 /compiler/typecheck/TcDerivInfer.hs
parent30b029bea9abe1f5f2855d9e7f0ae26a18cf049b (diff)
downloadhaskell-6ac8a72f7a044f44734a0270487c3bb6fb186d53.tar.gz
Typofixes in docs and comments [ci skip]
Diffstat (limited to 'compiler/typecheck/TcDerivInfer.hs')
-rw-r--r--compiler/typecheck/TcDerivInfer.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/typecheck/TcDerivInfer.hs b/compiler/typecheck/TcDerivInfer.hs
index d6c379ad74..4489d4547b 100644
--- a/compiler/typecheck/TcDerivInfer.hs
+++ b/compiler/typecheck/TcDerivInfer.hs
@@ -398,7 +398,7 @@ We have some special hacks to support things like
data T = MkT Int# deriving ( Show )
Specifically, we use TcGenDeriv.box to box the Int# into an Int
-(which we know how to show), and append a '#'. Parenthesis are not required
+(which we know how to show), and append a '#'. Parentheses are not required
for unboxed values (`MkT -3#` is a valid expression).
Note [Superclasses of derived instance]