summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDezmerean Robert <dezmereanrobert@gmail.com>2022-03-20 00:15:57 +0200
committerGitHub <noreply@github.com>2022-03-19 22:15:57 +0000
commite6a09d6e02cf8293fb3243a859e0dd7b1dbe305c (patch)
tree3b038dc1f37ec238baf9fcba19fef259366c00ca
parent1185fead98f674575d761ceb0137c4139a03eb34 (diff)
downloadwebsocket-client-e6a09d6e02cf8293fb3243a859e0dd7b1dbe305c.tar.gz
Fix typo in FAQ section (#805)
-rw-r--r--docs/source/faq.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/faq.rst b/docs/source/faq.rst
index d62a2b3..30a4ecc 100644
--- a/docs/source/faq.rst
+++ b/docs/source/faq.rst
@@ -116,10 +116,10 @@ What is the difference between recv_frame(), recv_data_frame(), and recv_data()?
This is explained in
`issue #688 <https://github.com/websocket-client/websocket-client/issues/688>`_.
-This information is useful if you do NOT want to use ``run.forever()`` but want
+This information is useful if you do NOT want to use ``run_forever()`` but want
to have similar functionality. In short, ``recv_data()`` is the
recommended choice and you will need to manage ping/pong on your own, while
-``run.forever()`` handles ping/pong by default.
+``run_forever()`` handles ping/pong by default.
How to disable ssl cert verification?
=======================================