summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-03-04 23:40:36 (GMT)
committerGitHub <noreply@github.com>2017-03-04 23:40:36 (GMT)
commit5789e415e82f91563f62ae08b47f1a264048a72b (patch)
treeb05b4c693da22ba69e9b70a772d833c2e0ee0a23 /Doc/library
parenta2edd3ae4074952ce77d9319da2dbb2a47300c27 (diff)
downloadcpython-5789e415e82f91563f62ae08b47f1a264048a72b.zip
cpython-5789e415e82f91563f62ae08b47f1a264048a72b.tar.gz
cpython-5789e415e82f91563f62ae08b47f1a264048a72b.tar.bz2
Correct spelling "instanciate" (GH-465) (GH-468)
(cherry picked from commit 6abaed0ddaa1dd9be727ede09f6cd801c467c2ec)
Diffstat (limited to 'Doc/library')
-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