diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 3.0.1.1
+
+* Doc improvement
+
 ## 3.0.1
 
 * Improved connection close logic
diff --git a/Network/Wai/Handler/WebSockets.hs b/Network/Wai/Handler/WebSockets.hs
--- a/Network/Wai/Handler/WebSockets.hs
+++ b/Network/Wai/Handler/WebSockets.hs
@@ -30,10 +30,10 @@
 -- WebSocket requests.
 --
 -- @
--- websocketsOr opts ws_app backup_app = \\req send_response ->
+-- websocketsOr opts ws_app backup_app = \\req respond ->
 --     __case__ 'websocketsApp' opts ws_app req __of__
 --         'Nothing'  -> backup_app req send_response
---         'Just' res -> send_response res
+--         'Just' res -> respond res
 -- @
 --
 -- For example, below is an 'Wai.Application' that sends @"Hello, client!"@ to
@@ -49,7 +49,7 @@
 --         'WS.sendTextData' conn ("Hello, client!" :: 'Data.Text.Text')
 --
 --     backupApp :: 'Wai.Application'
---     backupApp = 'Wai.respondLBS' 'Network.HTTP.Types.status400' [] "Not a WebSocket request"
+--     backupApp _ respond = respond $ 'Wai.responseLBS' 'Network.HTTP.Types.status400' [] "Not a WebSocket request"
 -- @
 websocketsOr :: WS.ConnectionOptions
              -> WS.ServerApp
diff --git a/wai-websockets.cabal b/wai-websockets.cabal
--- a/wai-websockets.cabal
+++ b/wai-websockets.cabal
@@ -1,5 +1,5 @@
 Name:                wai-websockets
-Version:             3.0.1
+Version:             3.0.1.1
 Synopsis:            Provide a bridge between WAI and the websockets package.
 License:             MIT
 License-file:        LICENSE
