Skip to content

Commit

Permalink
Fix link syntax (#667)
Browse files Browse the repository at this point in the history
Two external links are not rendering properly due to a simple rst typo.
  • Loading branch information
mwaskom committed Nov 30, 2022
1 parent c514c25 commit d0c60ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ works, but you might find the implementation interesting.
Multiprocessing
---------------

When using Python's `multiprocessing`, the start method must be set to either
When using Python's `multiprocessing`_, the start method must be set to either
``spawn`` or ``forkserver``. ``fork`` is not safe to use because of the open sockets
and async thread used by s3fs, and may lead to
hard-to-find bugs and occasional deadlocks. Read more about the available
`start methods`.
`start methods`_.

.. _multiprocessing: https://docs.python.org/3/library/multiprocessing.html
.. _start methods: https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods
Expand Down

0 comments on commit d0c60ac

Please sign in to comment.