summaryrefslogtreecommitdiffstats
path: root/Doc/library/tempfile.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-09 09:51:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-09 09:51:21 (GMT)
commit4b109cb4a8dd2ad9d55913b682c6234f7bcd874e (patch)
tree006cde8eb1450eebe225c05ca1485182fdef8e06 /Doc/library/tempfile.rst
parent4f169a7a4df0cfb4da6c7bab40a17dddc083cf2a (diff)
downloadcpython-4b109cb4a8dd2ad9d55913b682c6234f7bcd874e.zip
cpython-4b109cb4a8dd2ad9d55913b682c6234f7bcd874e.tar.gz
cpython-4b109cb4a8dd2ad9d55913b682c6234f7bcd874e.tar.bz2
Minor fix of previous commit.
Diffstat (limited to 'Doc/library/tempfile.rst')
-rw-r--r--Doc/library/tempfile.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tempfile.rst b/Doc/library/tempfile.rst
index b68a412..a8323a5 100644
--- a/Doc/library/tempfile.rst
+++ b/Doc/library/tempfile.rst
@@ -84,7 +84,7 @@ The module defines the following user-callable items:
The returned object is a file-like object whose :attr:`_file` attribute
is either a :class:`BytesIO` or :class:`StringIO` object (depending on
- whether specifies binary or text *mode* was specified) or a true file
+ whether binary or text *mode* was specified) or a true file
object, depending on whether :func:`rollover` has been called. This
file-like object can be used in a :keyword:`with` statement, just like
a normal file.