summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-12-15 07:26:09 -0800
committerengn33r <engn33r@users.noreply.github.com>2021-12-15 07:26:09 -0800
commit5ea9af47425fcd4d6837dd7311d4b52ca0955e8e (patch)
treec94fc13a25844ac4a75bebe15041efef7ca13614 /docs
parent51e87808fb70a2587620e69378aae6e595578076 (diff)
downloadwebsocket-client-5ea9af47425fcd4d6837dd7311d4b52ca0955e8e.tar.gz
Add dispatcher to run_forever examples to fix #580
Diffstat (limited to 'docs')
-rw-r--r--docs/source/faq.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/faq.rst b/docs/source/faq.rst
index ed909ad..b16bcbf 100644
--- a/docs/source/faq.rst
+++ b/docs/source/faq.rst
@@ -62,7 +62,8 @@ connection is closed when you try to use it. In order to properly carry out
further functions with your WebSocket connection after the connection has
closed, you will need to reconnect the WebSocket, using ``connect()`` or
``create_connection()`` (from the _core.py file). The WebSocketApp ``run_forever()``
-function automatically tries to reconnect when the connection is lost.
+function automatically tries to reconnect when the connection is lost
+if a dispatcher parameter is provided to the ``run_forever()`` function.
What's going on with the naming of this library?
==================================================