From 3c08dda918dd1985c2f10174e7b54f031908099b Mon Sep 17 00:00:00 2001 From: Emeka Icha Date: Mon, 21 Jan 2019 16:53:21 +0300 Subject: [PATCH] (fix) small typo in intro doc (#241) --- docs/intro.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro.rst b/docs/intro.rst index e05b626..7e862d6 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -67,7 +67,7 @@ asynchronous server: import eventlet sio = socketio.Server() - app = socketio.WSGIApp(eio, static_files={ + app = socketio.WSGIApp(sio, static_files={ '/': {'content_type': 'text/html', 'filename': 'index.html'} }) @@ -125,7 +125,7 @@ Uvicorn web server: Server Features --------------- -- Can connect to servers running other complaint Socket.IO clients besides +- Can connect to servers running other compliant Socket.IO clients besides the one in this package. - Compatible with Python 2.7 and Python 3.5+. - Two versions of the server, one for standard Python and another for