[Python-checkins] Minor grammar improvement to io documentation. (GH-10329)

Miss Islington (bot) webhook-mailer at python.org
Sun Nov 11 23:29:36 EST 2018


https://github.com/python/cpython/commit/a744abcb596df01be606c763f5857cf178a6c0f0
commit: a744abcb596df01be606c763f5857cf178a6c0f0
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-11-11T20:29:33-08:00
summary:

Minor grammar improvement to io documentation. (GH-10329)


Independently of -> Independent of
(cherry picked from commit cd449806fac1246cb7b4d392026fe6986ec01fb7)

Co-authored-by: Srinivas  Thatiparthy (శ్రీనివాస్  తాటిపర్తి) <thatiparthysreenivas at gmail.com>

files:
M Doc/library/io.rst

diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 2536c37e772b..7068e68ad90f 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -31,7 +31,7 @@ be used for each of them.  A concrete object belonging to any of these
 categories is called a :term:`file object`.  Other common terms are *stream*
 and *file-like object*.
 
-Independently of its category, each concrete stream object will also have
+Independent of its category, each concrete stream object will also have
 various capabilities: it can be read-only, write-only, or read-write. It can
 also allow arbitrary random access (seeking forwards or backwards to any
 location), or only sequential access (for example in the case of a socket or



More information about the Python-checkins mailing list