From 9a2b9818624845969aaf0cc3272908c1f6536c4a Mon Sep 17 00:00:00 2001 From: mostlycryptic <36571725+aaqibb13@users.noreply.github.com> Date: Fri, 1 Jul 2022 16:06:43 +0530 Subject: [PATCH] Fix typo in `Class Based Namespaces` --- docs/server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/server.rst b/docs/server.rst index c00bbb3..9823840 100644 --- a/docs/server.rst +++ b/docs/server.rst @@ -325,7 +325,7 @@ that belong to a namespace can be created as methods of a subclass of sio.register_namespace(MyCustomNamespace('/test')) -For asyncio based severs, namespaces must inherit from +For asyncio based servers, namespaces must inherit from :class:`socketio.AsyncNamespace`, and can define event handlers as coroutines if desired::