diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-03-30 08:02:05 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-03-30 08:02:05 (GMT) |
commit | dbaedb8cf9f141e6153d2e72bc04872499c40c58 (patch) | |
tree | c2278029c8ea481c220497ddfd31bb129cdb9e4c /Doc/glossary.rst | |
parent | 6bdb650ab260149c2eda483826f62eef365a2d0f (diff) | |
download | cpython-dbaedb8cf9f141e6153d2e72bc04872499c40c58.zip cpython-dbaedb8cf9f141e6153d2e72bc04872499c40c58.tar.gz cpython-dbaedb8cf9f141e6153d2e72bc04872499c40c58.tar.bz2 |
fix typo in glossary
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index b44c5cc..e5b3847 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -194,7 +194,7 @@ Glossary An object exposing a file-oriented API (with methods such as :meth:`read()` or :meth:`write()`) to an underlying resource. Depending on the way it was created, a file object can mediate access to a real - on-disk file or to another other type of storage or communication device + on-disk file or to another type of storage or communication device (for example standard input/output, in-memory buffers, sockets, pipes, etc.). File objects are also called :dfn:`file-like objects` or :dfn:`streams`. |