diff options
author | Loïc Hoguin <[email protected]> | 2018-06-26 18:53:34 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-06-26 18:53:34 +0200 |
commit | b8ee8004b0549fae2faf46f50e6fd42a0185d6a0 (patch) | |
tree | 2311ff90f099733c4d9f67981066214cd96688c7 | |
parent | b0ecf4c3936adf98ce4bb7279412aa50ccac1798 (diff) | |
download | gun-b8ee8004b0549fae2faf46f50e6fd42a0185d6a0.tar.gz gun-b8ee8004b0549fae2faf46f50e6fd42a0185d6a0.tar.bz2 gun-b8ee8004b0549fae2faf46f50e6fd42a0185d6a0.zip |
Fix a mistake in the Websocket guide
-rw-r--r-- | doc/src/guide/websocket.asciidoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/guide/websocket.asciidoc b/doc/src/guide/websocket.asciidoc index cf32291..418b456 100644 --- a/doc/src/guide/websocket.asciidoc +++ b/doc/src/guide/websocket.asciidoc @@ -93,7 +93,7 @@ gun:ws_send(ConnPid, {text, "Hello!"}). //---- Note that if you send a close frame, Gun will close the connection -cleanly and will not attempt to reconnect afterwards. +cleanly but will attempt to reconnect afterwards. === Receiving data |