Skip to content

Commit 8c747ab

Browse files
Fix documentation typos
1 parent b2cc86c commit 8c747ab

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/socketio/asyncio_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ async def emit(self, event, data=None, namespace=None, callback=None):
196196
argument is omitted the event is emitted to the
197197
default namespace.
198198
:param callback: If given, this function will be called to acknowledge
199-
the the server has received the message. The arguments
199+
the server has received the message. The arguments
200200
that will be passed to the function are those provided
201201
by the server.
202202
@@ -242,7 +242,7 @@ async def send(self, data, namespace=None, callback=None):
242242
argument is omitted the event is emitted to the
243243
default namespace.
244244
:param callback: If given, this function will be called to acknowledge
245-
the the server has received the message. The arguments
245+
the server has received the message. The arguments
246246
that will be passed to the function are those provided
247247
by the server.
248248

src/socketio/asyncio_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async def emit(self, event, data=None, to=None, room=None, skip_sid=None,
141141
argument is omitted the event is emitted to the
142142
default namespace.
143143
:param callback: If given, this function will be called to acknowledge
144-
the the client has received the message. The arguments
144+
the client has received the message. The arguments
145145
that will be passed to the function are those provided
146146
by the client. Callback functions can only be used
147147
when addressing an individual client.
@@ -194,7 +194,7 @@ async def send(self, data, to=None, room=None, skip_sid=None,
194194
argument is omitted the event is emitted to the
195195
default namespace.
196196
:param callback: If given, this function will be called to acknowledge
197-
the the client has received the message. The arguments
197+
the client has received the message. The arguments
198198
that will be passed to the function are those provided
199199
by the client. Callback functions can only be used
200200
when addressing an individual client.

src/socketio/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def emit(self, event, data=None, namespace=None, callback=None):
378378
argument is omitted the event is emitted to the
379379
default namespace.
380380
:param callback: If given, this function will be called to acknowledge
381-
the the server has received the message. The arguments
381+
the server has received the message. The arguments
382382
that will be passed to the function are those provided
383383
by the server.
384384
@@ -422,7 +422,7 @@ def send(self, data, namespace=None, callback=None):
422422
argument is omitted the event is emitted to the
423423
default namespace.
424424
:param callback: If given, this function will be called to acknowledge
425-
the the server has received the message. The arguments
425+
the server has received the message. The arguments
426426
that will be passed to the function are those provided
427427
by the server.
428428
"""

src/socketio/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def emit(self, event, data=None, to=None, room=None, skip_sid=None,
294294
argument is omitted the event is emitted to the
295295
default namespace.
296296
:param callback: If given, this function will be called to acknowledge
297-
the the client has received the message. The arguments
297+
the client has received the message. The arguments
298298
that will be passed to the function are those provided
299299
by the client. Callback functions can only be used
300300
when addressing an individual client.
@@ -346,7 +346,7 @@ def send(self, data, to=None, room=None, skip_sid=None, namespace=None,
346346
argument is omitted the event is emitted to the
347347
default namespace.
348348
:param callback: If given, this function will be called to acknowledge
349-
the the client has received the message. The arguments
349+
the client has received the message. The arguments
350350
that will be passed to the function are those provided
351351
by the client. Callback functions can only be used
352352
when addressing an individual client.

0 commit comments

Comments
 (0)