From 1a10972904707baddeee43091a39c1d5c8e40d0d Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Sun, 17 Sep 2017 11:40:12 +0800 Subject: [PATCH] Update servant-server/src/Servant/Server/Internal.hs s/taylor/tailor --- 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 cc81e711..6f10baa8 100644 --- a/servant-server/src/Servant/Server/Internal.hs +++ b/servant-server/src/Servant/Server/Internal.hs @@ -117,7 +117,7 @@ instance (HasServer a context, HasServer b context) => HasServer (a :<|> b) cont where pa = Proxy :: Proxy a pb = Proxy :: Proxy b - -- | This is better than 'enter', as it's taylor made for 'HasServer'. + -- | This is better than 'enter', as it's tailor made for 'HasServer'. hoistServer _ pc nt (a :<|> b) = hoistServer (Proxy :: Proxy a) pc nt a :<|> hoistServer (Proxy :: Proxy b) pc nt b