diff options
author | cburroughs <chris.burroughs@gmail.com> | 2022-10-28 21:13:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 21:13:48 (GMT) |
commit | 72fa57a8fe2e9df637170dc97f994ac70931e8e9 (patch) | |
tree | 8b22a0ed8ceeeb6d8df5aa7496ef5aa4c464e999 /Doc | |
parent | 7ee3aca00a0dffc9cb5906a24005a8c61d5bce14 (diff) | |
download | cpython-72fa57a8fe2e9df637170dc97f994ac70931e8e9.zip cpython-72fa57a8fe2e9df637170dc97f994ac70931e8e9.tar.gz cpython-72fa57a8fe2e9df637170dc97f994ac70931e8e9.tar.bz2 |
Fix typo in contextvars docs (#98823)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/contextvars.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/contextvars.rst b/Doc/library/contextvars.rst index be1dd0c..08a7c7d 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -110,7 +110,7 @@ Context Variables A read-only property. Set to the value the variable had before the :meth:`ContextVar.set` method call that created the token. - It points to :attr:`Token.MISSING` is the variable was not set + It points to :attr:`Token.MISSING` if the variable was not set before the call. .. attribute:: Token.MISSING |