diff options
author | Tom Christie <tom@tomchristie.com> | 2018-04-27 22:35:13 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-04-27 22:35:13 (GMT) |
commit | e022bbc169ca1428dc3017187012de17ce6e0bc7 (patch) | |
tree | 9ed62bd1cc02c57352705083f99c59ba6bec9b6e | |
parent | e2396506606115e785c94ec129eb86e2ed0aa744 (diff) | |
download | cpython-e022bbc169ca1428dc3017187012de17ce6e0bc7.zip cpython-e022bbc169ca1428dc3017187012de17ce6e0bc7.tar.gz cpython-e022bbc169ca1428dc3017187012de17ce6e0bc7.tar.bz2 |
Change "non-local state" to "content-local state". (GH-6617)
The wording here seems wrong, as per https://bugs.python.org/msg315792
-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 abd0d5f..9c7ea2b 100644 --- a/Doc/library/contextvars.rst +++ b/Doc/library/contextvars.rst @@ -8,7 +8,7 @@ -------------- -This module provides APIs to manage, store, and access non-local +This module provides APIs to manage, store, and access context-local state. The :class:`~contextvars.ContextVar` class is used to declare and work with *Context Variables*. The :func:`~contextvars.copy_context` function and the :class:`~contextvars.Context` class should be used to |