From 270eb372cc83778a897d32e95453eb385328d9de Mon Sep 17 00:00:00 2001 From: Onwuka Gideon Date: Thu, 16 Mar 2023 10:56:16 +0100 Subject: [PATCH] Fix documentation typo (#1155) --- src/socketio/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socketio/server.py b/src/socketio/server.py index fc13f2ae..e8231c31 100644 --- a/src/socketio/server.py +++ b/src/socketio/server.py @@ -281,7 +281,7 @@ def emit(self, event, data=None, to=None, room=None, skip_sid=None, one of the types indicated above. :param to: The recipient of the message. This can be set to the session ID of a client to address only that client, to any - any custom room created by the application to address all + custom room created by the application to address all the clients in that room, or to a list of custom room names. If this argument is omitted the event is broadcasted to all connected clients.