Browse Source

Fix documentation typos

pull/1155/head
Miguel Grinberg 2 years ago
parent
commit
8c747ab67b
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      src/socketio/asyncio_client.py
  2. 4
      src/socketio/asyncio_server.py
  3. 4
      src/socketio/client.py
  4. 4
      src/socketio/server.py

4
src/socketio/asyncio_client.py

@ -196,7 +196,7 @@ class AsyncClient(client.Client):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the server has received the message. The arguments
the server has received the message. The arguments
that will be passed to the function are those provided
by the server.
@ -242,7 +242,7 @@ class AsyncClient(client.Client):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the server has received the message. The arguments
the server has received the message. The arguments
that will be passed to the function are those provided
by the server.

4
src/socketio/asyncio_server.py

@ -141,7 +141,7 @@ class AsyncServer(server.Server):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the client has received the message. The arguments
the client has received the message. The arguments
that will be passed to the function are those provided
by the client. Callback functions can only be used
when addressing an individual client.
@ -194,7 +194,7 @@ class AsyncServer(server.Server):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the client has received the message. The arguments
the client has received the message. The arguments
that will be passed to the function are those provided
by the client. Callback functions can only be used
when addressing an individual client.

4
src/socketio/client.py

@ -378,7 +378,7 @@ class Client(object):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the server has received the message. The arguments
the server has received the message. The arguments
that will be passed to the function are those provided
by the server.
@ -422,7 +422,7 @@ class Client(object):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the server has received the message. The arguments
the server has received the message. The arguments
that will be passed to the function are those provided
by the server.
"""

4
src/socketio/server.py

@ -294,7 +294,7 @@ class Server(object):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the client has received the message. The arguments
the client has received the message. The arguments
that will be passed to the function are those provided
by the client. Callback functions can only be used
when addressing an individual client.
@ -346,7 +346,7 @@ class Server(object):
argument is omitted the event is emitted to the
default namespace.
:param callback: If given, this function will be called to acknowledge
the the client has received the message. The arguments
the client has received the message. The arguments
that will be passed to the function are those provided
by the client. Callback functions can only be used
when addressing an individual client.

Loading…
Cancel
Save