From 9c67267071221d7dbc3f4f49982a745368715d38 Mon Sep 17 00:00:00 2001 From: Christian Marie Date: Tue, 19 Jan 2016 11:06:38 +1100 Subject: [PATCH] servant-server: fix comment typo --- .../src/Servant/Server/Internal/RoutingApplication.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servant-server/src/Servant/Server/Internal/RoutingApplication.hs b/servant-server/src/Servant/Server/Internal/RoutingApplication.hs index 4b27c688..bcb563df 100644 --- a/servant-server/src/Servant/Server/Internal/RoutingApplication.hs +++ b/servant-server/src/Servant/Server/Internal/RoutingApplication.hs @@ -77,7 +77,7 @@ toApplication ra request respond = do -- now, and therefore get 415 before 405, which is wrong. -- -- If we delay Captures, but perform method checks eagerly, we --- end up potentially preferring 405 over 404, whcih is also bad. +-- end up potentially preferring 405 over 404, which is also bad. -- -- So in principle, we'd like: --