]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct spelling "instanciate" (#465)
authorJ. W <jw4js@users.noreply.github.com>
Sat, 4 Mar 2017 22:51:08 +0000 (22:51 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sat, 4 Mar 2017 22:51:08 +0000 (17:51 -0500)
Doc/library/asyncio-subprocess.rst

index dc93a74c6dee126eadb63db1695fced3ef8af9f2..16ba9a3cd6c7f24dae692f3d1f787aae31bea7ce 100644 (file)
@@ -80,7 +80,7 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
    however, where :class:`~subprocess.Popen` takes a single argument which is
    list of strings, :func:`subprocess_exec` takes multiple string arguments.
 
-   The *protocol_factory* must instanciate a subclass of the
+   The *protocol_factory* must instantiate a subclass of the
    :class:`asyncio.SubprocessProtocol` class.
 
    Other parameters:
@@ -123,7 +123,7 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
    using the platform's "shell" syntax. This is similar to the standard library
    :class:`subprocess.Popen` class called with ``shell=True``.
 
-   The *protocol_factory* must instanciate a subclass of the
+   The *protocol_factory* must instantiate a subclass of the
    :class:`asyncio.SubprocessProtocol` class.
 
    See :meth:`~AbstractEventLoop.subprocess_exec` for more details about