From 55e3a6cb02471adff9fa6cd45774003f778b6db4 Mon Sep 17 00:00:00 2001 From: Almog Cohen Date: Wed, 27 Mar 2019 16:18:10 -0700 Subject: [PATCH] change a typo from `client` to `server` (#280) --- docs/server.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/server.rst b/docs/server.rst index d1b154ba..0a80ee50 100644 --- a/docs/server.rst +++ b/docs/server.rst @@ -1,15 +1,15 @@ The Socket.IO Server ==================== -This package contains two Socket.IO clients: +This package contains two Socket.IO servers: - The :func:`socketio.Server` class creates a server compatible with the Python standard library. - The :func:`socketio.AsyncServer` class creates a server compatible with the ``asyncio`` package. -The methods in the two clients are the same, with the only difference that in -the ``asyncio`` client most methods are implemented as coroutines. +The methods in the two servers are the same, with the only difference that in +the ``asyncio`` server most methods are implemented as coroutines. Installation ------------