Skip to content

Commit

Permalink
Fixed broken gevent URL in documentation (#1427)
Browse files Browse the repository at this point in the history
  • Loading branch information
imcarlosguerrero authored Dec 25, 2024
1 parent 7e8e884 commit 8964dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Server Features
- Can be hosted on any `WSGI <https://wsgi.readthedocs.io/en/latest/index.html>`_ or
`ASGI <https://asgi.readthedocs.io/en/latest/>`_ web server including
`Gunicorn <https://gunicorn.org/>`_, `Uvicorn <https://github.com/encode/uvicorn>`_,
`eventlet <http://eventlet.net/>`_ and `gevent <http://gevent.org>`_.
`eventlet <http://eventlet.net/>`_ and `gevent <http://www.gevent.org>`_.
- Can be integrated with WSGI applications written in frameworks such as Flask, Django,
etc.
- Can be integrated with `aiohttp <http://aiohttp.readthedocs.io/>`_,
Expand Down
2 changes: 1 addition & 1 deletion docs/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ Gevent

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

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

0 comments on commit 8964dab

Please sign in to comment.