Skip to content

Commit

Permalink
Double backticks for with
Browse files Browse the repository at this point in the history
  • Loading branch information
samatjain committed Apr 25, 2023
1 parent 16d2a21 commit cc594c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <with-locks>` so `with` can be used.
support the :ref:`context management protocol <with-locks>` 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
Expand Down

0 comments on commit cc594c1

Please sign in to comment.