Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #1881

Merged
merged 1 commit into from Sep 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/flask_socketio/__init__.py
Expand Up @@ -248,7 +248,7 @@ def loads(*args, **kwargs):
self.server.register_namespace(namespace_handler)

if app is not None:
# here we attach the SocketIO middlware to the SocketIO object so
# here we attach the SocketIO middleware to the SocketIO object so
# it can be referenced later if debug middleware needs to be
# inserted
self.sockio_mw = _SocketIOMiddleware(self.server, app,
Expand Down Expand Up @@ -744,7 +744,7 @@ def start_background_task(self, target, *args, **kwargs):
:param kwargs: keyword arguments to pass to the function.

This function returns an object that represents the background task,
on which the ``join()`` methond can be invoked to wait for the task to
on which the ``join()`` method can be invoked to wait for the task to
complete.
"""
return self.server.start_background_task(target, *args, **kwargs)
Expand Down