Merge pull request #601 from timhabermaas/master

Fix typo in servant-js README
This commit is contained in:
Sönke Hahn 2016-09-17 11:36:40 -04:00 committed by GitHub
commit 2a21e14e6e

View File

@ -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