Skip to content

Commit 2c9e59f

Browse files
committed
Addressed review comments.
1 parent 6b7b176 commit 2c9e59f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Doc/glossary.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,13 @@ Glossary
222222
See :pep:`343`.
223223

224224
context variable
225-
A variable which can have different values depending on it's context.
226-
This is similar to TLS(Thread Local Storage) in which each execution
227-
thread may have a different value for a variable. In case of context
228-
variable, there may be sevaral contexts in one execution thread and it is
229-
used to keep track of variables in concurrent asynchronous tasks.
230-
See `https://docs.python.org/3/library/contextvars.html`.
225+
A variable which can have different values depending on its context.
226+
This is similar to Thread-Local Storage in which each execution
227+
thread may have a different value for a variable. However, with context
228+
variables, there may be several contexts in one execution thread and the
229+
main usage for context variables is to keep track of variables in
230+
concurrent asynchronous tasks.
231+
See :mod:`contextvars`.
231232

232233
contiguous
233234
.. index:: C-contiguous, Fortran contiguous

0 commit comments

Comments
 (0)