diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index d465ded350053a..331bfae7a153bc 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -596,7 +596,7 @@ no thread owns it. To lock the lock, a thread calls its :meth:`~RLock.acquire` method. To unlock the lock, a thread calls its :meth:`~Lock.release` method. Reentrant locks -support the :ref:`context management protocol ` so `with` can be used. +support the :ref:`context management protocol ` so ```with``` can be used. RLock's :meth:`~RLock.acquire`/:meth:`~RLock.release` call pairs may be nested, unlike Lock's :meth:`~Lock.acquire`/:meth:`~Lock.release`. Only the final