Skip to content

Commit

Permalink
Remove inline link
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Mar 1, 2024
1 parent c5c6e2a commit fa0dba5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/userguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ Running the scheduler

The scheduler_ comes in two flavors: synchronous and asynchronous. The synchronous
scheduler actually runs an asynchronous scheduler behind the scenes in a dedicated
thread, so if your app runs on :mod:`asyncio` or `Trio <https://trio.readthedocs.io/en/stable/>`_,
you should prefer the asynchronous scheduler.
thread, so if your app runs on :mod:`asyncio` or Trio_, you should prefer the asynchronous
scheduler.

The scheduler can run either in the foreground, blocking on a call to
:meth:`~Scheduler.run_until_stopped`, or in the background where it does its work while
Expand All @@ -145,6 +145,7 @@ scenario, the scheduler adds an :mod:`atexit` hook that will perform an orderly
of the scheduler before the process terminates.

.. _WSGI: https://wsgi.readthedocs.io/en/latest/what.html
.. _Trio: https://trio.readthedocs.io/en/stable/

.. warning:: If you start the scheduler in the background and let the script finish
execution, the scheduler will automatically shut down as well.
Expand Down

0 comments on commit fa0dba5

Please sign in to comment.