From 27e842365fb0f32b58eca0e45067bd2f61370ff7 Mon Sep 17 00:00:00 2001 From: Matthias Fischmann Date: Fri, 27 Feb 2015 15:27:35 +0100 Subject: [PATCH] Remove overly specific comment. --- src/Servant/Server.hs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Servant/Server.hs b/src/Servant/Server.hs index ec7efbd6..0bec3370 100644 --- a/src/Servant/Server.hs +++ b/src/Servant/Server.hs @@ -42,10 +42,5 @@ import Servant.Server.Internal -- > -- > main :: IO () -- > main = Network.Wai.Handler.Warp.run 8080 app --- --- (If you need access to the wai 'Application' type, use --- 'toApplication'. This is useful for writing custom servers that do --- things other than routing (e.g. dumping all requests and responses --- to a file).) serve :: HasServer layout => Proxy layout -> Server layout -> Application serve p server = toApplication (route p server)