From 547449bc70248b1a2c68e362a026d42db083222c Mon Sep 17 00:00:00 2001 From: John Sigg <31633921+jdsigg@users.noreply.github.com> Date: Sun, 28 Apr 2024 09:50:17 -0400 Subject: [PATCH] Fix typos in server.rst (#1331) Change 2 instances of "complaint" to "compliant" --- docs/server.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/server.rst b/docs/server.rst index 2393b9b9..3692e139 100644 --- a/docs/server.rst +++ b/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::