From 5d4b730b3e198e7c4a2690b5f0862172c84ca9ed Mon Sep 17 00:00:00 2001 From: Tim Habermaas Date: Fri, 16 Sep 2016 18:48:54 +0200 Subject: [PATCH] Fix typo in servant-js README --- servant-js/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servant-js/README.md b/servant-js/README.md index e92f9f2d..f2c99616 100644 --- a/servant-js/README.md +++ b/servant-js/README.md @@ -78,8 +78,8 @@ server counter = counterPlusOne counter -- (+1) on the TVar :<|> currentValue counter -- read the TVar server' :: TVar Counter -> Server TestApi' -server counter = server counter - :<|> serveDirectory www -- serve static files +server' counter = server counter + :<|> serveDirectory www -- serve static files runServer :: TVar Counter -- ^ shared variable for the counter -> Int -- ^ port the server should listen on