Skip to content

Commit

Permalink
Fix RunVar docstring typo (agronholm#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
gschaffner committed Oct 18, 2022
1 parent fb24d71 commit 74c74cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/anyio/lowlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self, var: RunVar[T], value: T | Literal[_NoValueSet.NO_VALUE_SET])

class RunVar(Generic[T]):
"""
Like a :class:`~contextvars.ContextVar`, expect scoped to the running event loop.
Like a :class:`~contextvars.ContextVar`, except scoped to the running event loop.
"""

__slots__ = "_name", "_default"
Expand Down

0 comments on commit 74c74cf

Please sign in to comment.