From 13de7991d96559a8ba5d007497b5c958808c0ca6 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Mon, 27 Jul 2020 23:41:41 -0300 Subject: [PATCH] Add link to trio process spawning docs --- docs/index.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 4f0dadb..2c2a7be 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -469,7 +469,9 @@ Currently the options available are: ``trio`` ++++++++ -The `trio` backend ofers a lightweight async wrapper to ``subprocess``, takes advantage of the ``trio.open_process`` API. +The ``trio`` backend ofers a lightweight async wrapper to ``subprocess``, takes advantage of the ``trio.`` `open_process`_ API. + +.. _open_process: https://trio.readthedocs.io/en/stable/reference-io.html#spawning-subprocesses ``multiprocessing``