Skip to content

Commit 8964dab

Browse files
Fixed broken gevent URL in documentation (#1427)
1 parent 7e8e884 commit 8964dab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/intro.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Server Features
189189
- Can be hosted on any `WSGI <https://wsgi.readthedocs.io/en/latest/index.html>`_ or
190190
`ASGI <https://asgi.readthedocs.io/en/latest/>`_ web server including
191191
`Gunicorn <https://gunicorn.org/>`_, `Uvicorn <https://github.com/encode/uvicorn>`_,
192-
`eventlet <http://eventlet.net/>`_ and `gevent <http://gevent.org>`_.
192+
`eventlet <http://eventlet.net/>`_ and `gevent <http://www.gevent.org>`_.
193193
- Can be integrated with WSGI applications written in frameworks such as Flask, Django,
194194
etc.
195195
- Can be integrated with `aiohttp <http://aiohttp.readthedocs.io/>`_,

docs/server.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ Gevent
838838

839839
When a multi-threaded web server is unable to satisfy the concurrency and
840840
scalability requirements of the application, an option to try is
841-
`Gevent <http://gevent.org>`_. Gevent is a coroutine-based concurrency library
841+
`Gevent <http://www.gevent.org>`_. Gevent is a coroutine-based concurrency library
842842
based on greenlets, which are significantly lighter than threads.
843843

844844
Instances of class ``socketio.Server`` will automatically use Gevent if the

0 commit comments

Comments
 (0)