Skip to content

Commit 21c6590

Browse files
committed
Fix Sphinx.
1 parent c970dc1 commit 21c6590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

peps/pep-0797.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ Interpreter Lifetimes
289289
When an interpreter is destroyed, proxies wrapping objects from that
290290
interpreter may still exist elsewhere. To prevent this from causing crashes,
291291
an interpreter will invalidate all proxies pointing its objects by overwriting
292-
their wrapped object with :const:`None`.
292+
their wrapped object with ``None``.
293293

294294
To demonstrate, the following snippet first prints out ``Alive``, and then
295295
``None`` after deleting the interpreter:
@@ -347,7 +347,7 @@ Directly Sharing Proxy Objects
347347
------------------------------
348348

349349
The initial revision of this proposal took an approach where an instance of
350-
:class:`~conccurent.interpreters.SharedObjectProxy` was :term:`immortal`. This
350+
:class:`~concurrent.interpreters.SharedObjectProxy` was :term:`immortal`. This
351351
allowed proxy objects to be directly shared across interpreters, because their
352352
reference count was thread-safe (since it never changed due to immortality).
353353

0 commit comments

Comments
 (0)