diff --git a/yesod-core/README b/yesod-core/README index 987fd1b3..fd05b7a5 100644 --- a/yesod-core/README +++ b/yesod-core/README @@ -1 +1 @@ -Learn more at http://docs.yesodweb.com/ +Learn more at http://www.yesodweb.com/ diff --git a/yesod-websockets/Yesod/WebSockets.hs b/yesod-websockets/Yesod/WebSockets.hs index 82757413..58146f9b 100644 --- a/yesod-websockets/Yesod/WebSockets.hs +++ b/yesod-websockets/Yesod/WebSockets.hs @@ -67,13 +67,13 @@ webSockets inner = do receiveData :: (MonadIO m, WS.WebSocketsData a) => WebSocketsT m a receiveData = ReaderT $ liftIO . WS.receiveData --- | Send a textual messsage to the client. +-- | Send a textual message to the client. -- -- Since 0.1.0 sendTextData :: (MonadIO m, WS.WebSocketsData a) => a -> WebSocketsT m () sendTextData x = ReaderT $ liftIO . flip WS.sendTextData x --- | Send a binary messsage to the client. +-- | Send a binary message to the client. -- -- Since 0.1.0 sendBinaryData :: (MonadIO m, WS.WebSocketsData a) => a -> WebSocketsT m ()