diff options
Diffstat (limited to 'Lib/asyncio/subprocess.py')
-rw-r--r-- | Lib/asyncio/subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/subprocess.py b/Lib/asyncio/subprocess.py index e6bec71..2a68c9e 100644 --- a/Lib/asyncio/subprocess.py +++ b/Lib/asyncio/subprocess.py @@ -130,7 +130,7 @@ class SubprocessStreamProtocol(streams.FlowControlMixin, class Process: def __init__(self, transport, protocol, loop, *, _asyncio_internal=False): if not _asyncio_internal: - warnings.warn(f"{self.__class__} should be instaniated " + warnings.warn(f"{self.__class__} should be instantiated " "by asyncio internals only, " "please avoid its creation from user code", DeprecationWarning) |