From 2445855203b9ffcd67b574ec5d9c7e58bbf2b15f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Mon, 18 Jan 2016 22:14:11 +0100 Subject: [PATCH] servant-server: renaming of type variable --- servant-server/src/Servant/Server/Internal.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant-server/src/Servant/Server/Internal.hs b/servant-server/src/Servant/Server/Internal.hs index f502ea9a..a5ab7200 100644 --- a/servant-server/src/Servant/Server/Internal.hs +++ b/servant-server/src/Servant/Server/Internal.hs @@ -72,7 +72,7 @@ class HasServer layout where type ServerT layout (m :: * -> *) :: * type HasConfig layout (c :: [*]) :: Constraint - route :: HasConfig layout a => Proxy layout -> Config a -> Delayed (Server layout) -> Router + route :: HasConfig layout config => Proxy layout -> Config config -> Delayed (Server layout) -> Router type Server layout = ServerT layout (ExceptT ServantErr IO)