summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorJ. W <jw4js@users.noreply.github.com>2017-03-04 22:51:08 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2017-03-04 22:51:08 (GMT)
commit6abaed0ddaa1dd9be727ede09f6cd801c467c2ec (patch)
treed0417debdb775fe34226c837feb979382f4bb8b4 /Doc
parentde04644627f82d9dc48b3423def7ff5b4aa1926a (diff)
downloadcpython-6abaed0ddaa1dd9be727ede09f6cd801c467c2ec.zip
cpython-6abaed0ddaa1dd9be727ede09f6cd801c467c2ec.tar.gz
cpython-6abaed0ddaa1dd9be727ede09f6cd801c467c2ec.tar.bz2
Correct spelling "instanciate" (#465)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-subprocess.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
index dc93a74..16ba9a3 100644
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -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