]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed a missing . and a missing capital letter. (GH-12170)
authorJules Lasne (jlasne) <jlasne@student.42.fr>
Mon, 4 Mar 2019 18:12:04 +0000 (19:12 +0100)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 4 Mar 2019 18:12:04 +0000 (20:12 +0200)
Doc/library/subprocess.rst

index e7844587e908b775960503fe8407d19ed3854c28..9ba0d30da5698eea3db5aca1ec7272e6bb4f714f 100644 (file)
@@ -959,7 +959,7 @@ The :mod:`subprocess` module exposes the following constants.
 .. data:: CREATE_NO_WINDOW
 
    A :class:`Popen` ``creationflags`` parameter to specify that a new process
-   will not create a window
+   will not create a window.
 
    .. versionadded:: 3.7
 
@@ -1295,7 +1295,7 @@ Replacing functions from the :mod:`popen2` module
 
 * :class:`Popen` raises an exception if the execution fails.
 
-* the *capturestderr* argument is replaced with the *stderr* argument.
+* The *capturestderr* argument is replaced with the *stderr* argument.
 
 * ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.