Browse Source
Fix typos in server.rst
Change 2 instances of "complaint" to "compliant"
pull/1331/head
John Sigg
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
docs/server.rst
|
|
@ -722,7 +722,7 @@ ASGI web application and the Socket.IO server as a bundle:: |
|
|
|
sio = socketio.AsyncServer(async_mode='asgi') |
|
|
|
app = socketio.ASGIApp(sio, other_app) |
|
|
|
|
|
|
|
The ``ASGIApp`` instance is a fully complaint ASGI instance that can be |
|
|
|
The ``ASGIApp`` instance is a fully compliant ASGI instance that can be |
|
|
|
deployed with an ASGI compatible web server. |
|
|
|
|
|
|
|
Aiohttp |
|
|
@ -947,7 +947,7 @@ constructor:: |
|
|
|
sio = socketio.Server(async_mode='threading') |
|
|
|
|
|
|
|
A server configured for threading is deployed as a regular web application, |
|
|
|
using any WSGI complaint multi-threaded server. The example below deploys an |
|
|
|
using any WSGI compliant multi-threaded server. The example below deploys an |
|
|
|
Socket.IO application combined with a Flask web application, using Flask's |
|
|
|
development web server based on Werkzeug:: |
|
|
|
|
|
|
|