From 8d7f25a64657f5ada92d25facf5d24ed32d103af Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Mon, 5 Mar 2018 10:53:46 +0000 Subject: [PATCH] Fix the changelog with hoistServerWithContext --- servant/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant/CHANGELOG.md b/servant/CHANGELOG.md index f7449e42..4d2bca4d 100644 --- a/servant/CHANGELOG.md +++ b/servant/CHANGELOG.md @@ -130,7 +130,7 @@ ```haskell type ServerT (MyCombinator :> api) m = MyValue -> ServerT api m - hoistServerWithContext _ pc nt s = hoistServerWithContext (Proxy :: Proxy api) pc nt . s + hoistServerWithContext _ pc nt s = hoistServerWithContext (Proxy :: Proxy api) pc nt s ``` See https://github.com/haskell-servant/servant-auth/pull/67/commits/8ee3b6315247ac076516213fd7cfcdbfdb583ac9 for a real world example.