summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng.ang@gmail.com>2022-01-26 09:31:33 +0800
committerGitHub <noreply@github.com>2022-01-26 01:31:33 +0000
commit4be594fa9a468c843d76197d26bb31c97311f0a7 (patch)
tree24d81cfcd034dbf4de98f4a68104e9ed6b47a2cc
parent473e840cc9201f0a4283172d2a5541cc7411a509 (diff)
downloadwebsocket-client-4be594fa9a468c843d76197d26bb31c97311f0a7.tar.gz
Fix typos (#782)
-rw-r--r--compliance/autobahn-test-report-Feb-03-2021.html2
-rw-r--r--docs/source/threading.rst4
2 files changed, 3 insertions, 3 deletions
diff --git a/compliance/autobahn-test-report-Feb-03-2021.html b/compliance/autobahn-test-report-Feb-03-2021.html
index 3aca291..16342d6 100644
--- a/compliance/autobahn-test-report-Feb-03-2021.html
+++ b/compliance/autobahn-test-report-Feb-03-2021.html
@@ -4104,7 +4104,7 @@ PART3 = <br>
<h2>Case 7.1.6</h2>
<a class="up" href="#top">Up</a>
<p class="case_text_block case_desc"><b>Case Description</b><br/><br/>Send 256K message followed by close then a ping</p>
- <p class="case_text_block case_expect"><b>Case Expectation</b><br/><br/>Case outcome depends on implementation defined close behavior. Message and close frame are sent back to back. If the close frame is processed before the text message write is complete (as can happen in asynchronous processing models) the close frame is processed first and the text message may not be received or may only be partially recieved.</p>
+ <p class="case_text_block case_expect"><b>Case Expectation</b><br/><br/>Case outcome depends on implementation defined close behavior. Message and close frame are sent back to back. If the close frame is processed before the text message write is complete (as can happen in asynchronous processing models) the close frame is processed first and the text message may not be received or may only be partially received.</p>
<br/>
<a name="case_desc_7_3_1"></a>
<h2>Case 7.3.1</h2>
diff --git a/docs/source/threading.rst b/docs/source/threading.rst
index ea960ab..51a74af 100644
--- a/docs/source/threading.rst
+++ b/docs/source/threading.rst
@@ -24,8 +24,8 @@ indicates that websocket-client is not compatible with asyncio. The
which is used in a popular socket-io client, specifically uses websocket-client
as a dependency only in places where asyncio is not used. If asyncio is an
important part of your project, you might consider using another websockets library.
-However, some simple use cases, such as asyncronously receiving data, may be
-a place to use asyncio. Here is one snippet showing how asyncronous listening
+However, some simple use cases, such as asynchronously receiving data, may be
+a place to use asyncio. Here is one snippet showing how asynchronous listening
might be implemented.
::