Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
btschwertfeger committed Nov 27, 2024
1 parent 179740c commit 8add187
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/websockets/asyncio/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __init__( # pragma: no cover
# This flag prevents concurrent calls to get() by user code.
self.get_in_progress = False

# This flag marks a soon cancellation
# This flag marks a soon cancellation.
self.cancelling = False

# This flag marks the end of the connection.
Expand Down
2 changes: 1 addition & 1 deletion src/websockets/sync/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def close(self) -> None:
"""
End the stream of frames.
Callling :meth:`close` concurrently with :meth:`get`, :meth:`get_iter`,
Calling :meth:`close` concurrently with :meth:`get`, :meth:`get_iter`,
or :meth:`put` is safe. They will raise :exc:`EOFError`.
"""
Expand Down

0 comments on commit 8add187

Please sign in to comment.