Browse Source

(fix) small typo in intro doc (#241)

pull/247/head
Emeka Icha 6 years ago
committed by Miguel Grinberg
parent
commit
3c08dda918
  1. 4
      docs/intro.rst

4
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

Loading…
Cancel
Save