summaryrefslogtreecommitdiff
path: root/src/Network/KRPC/Method.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Network/KRPC/Method.hs')
-rw-r--r--src/Network/KRPC/Method.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Network/KRPC/Method.hs b/src/Network/KRPC/Method.hs
index ea9da958..916b38a8 100644
--- a/src/Network/KRPC/Method.hs
+++ b/src/Network/KRPC/Method.hs
@@ -47,8 +47,7 @@ newtype Method param result = Method { methodName :: MethodName }
47instance (Typeable a, Typeable b) => Show (Method a b) where 47instance (Typeable a, Typeable b) => Show (Method a b) where
48 showsPrec _ = showsMethod 48 showsPrec _ = showsMethod
49 49
50showsMethod :: forall a. forall b. Typeable a => Typeable b 50showsMethod :: forall a b. ( Typeable a , Typeable b ) => Method a b -> ShowS
51 => Method a b -> ShowS
52showsMethod (Method name) = 51showsMethod (Method name) =
53 showString (BC.unpack name) <> 52 showString (BC.unpack name) <>
54 showString " :: " <> 53 showString " :: " <>