diff options
Diffstat (limited to 'src/Network/KRPC/Method.hs')
-rw-r--r-- | src/Network/KRPC/Method.hs | 3 |
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 } | |||
47 | instance (Typeable a, Typeable b) => Show (Method a b) where | 47 | instance (Typeable a, Typeable b) => Show (Method a b) where |
48 | showsPrec _ = showsMethod | 48 | showsPrec _ = showsMethod |
49 | 49 | ||
50 | showsMethod :: forall a. forall b. Typeable a => Typeable b | 50 | showsMethod :: forall a b. ( Typeable a , Typeable b ) => Method a b -> ShowS |
51 | => Method a b -> ShowS | ||
52 | showsMethod (Method name) = | 51 | showsMethod (Method name) = |
53 | showString (BC.unpack name) <> | 52 | showString (BC.unpack name) <> |
54 | showString " :: " <> | 53 | showString " :: " <> |