diff options
author | Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | 2018-11-12 04:06:18 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-12 04:06:18 (GMT) |
commit | cd449806fac1246cb7b4d392026fe6986ec01fb7 (patch) | |
tree | 050f2289a6c7df71b389eff6389313f8b8a5736d | |
parent | 7432f0929f2e90bde30e089da8e1efc580ccade1 (diff) | |
download | cpython-cd449806fac1246cb7b4d392026fe6986ec01fb7.zip cpython-cd449806fac1246cb7b4d392026fe6986ec01fb7.tar.gz cpython-cd449806fac1246cb7b4d392026fe6986ec01fb7.tar.bz2 |
Minor grammar improvement to io documentation. (GH-10329)
Independently of -> Independent of
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 2536c37e..7068e68 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 |