From 29c794333ec284bd8f968db68d24738ef2b43923 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sat, 6 Jan 2024 11:38:11 +0000 Subject: [PATCH] Documentation typos --- src/socketio/async_simple_client.py | 2 +- src/socketio/simple_client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socketio/async_simple_client.py b/src/socketio/async_simple_client.py index db90784..c6cd4fc 100644 --- a/src/socketio/async_simple_client.py +++ b/src/socketio/async_simple_client.py @@ -9,7 +9,7 @@ class AsyncSimpleClient: This class implements a simple, yet fully compliant Socket.IO web client with support for websocket and long-polling transports. - Th positional and keyword arguments given in the constructor are passed + The positional and keyword arguments given in the constructor are passed to the underlying :func:`socketio.AsyncClient` object. """ def __init__(self, *args, **kwargs): diff --git a/src/socketio/simple_client.py b/src/socketio/simple_client.py index ce3a1c5..6779147 100644 --- a/src/socketio/simple_client.py +++ b/src/socketio/simple_client.py @@ -9,7 +9,7 @@ class SimpleClient: This class implements a simple, yet fully compliant Socket.IO web client with support for websocket and long-polling transports. - Th positional and keyword arguments given in the constructor are passed + The positional and keyword arguments given in the constructor are passed to the underlying :func:`socketio.Client` object. """ def __init__(self, *args, **kwargs):