summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-07-11 00:51:03 (GMT)
committerGitHub <noreply@github.com>2018-07-11 00:51:03 (GMT)
commitc87b1aabbd660d111afde326fbbd897fb689a7b8 (patch)
tree8ea797988d3caca5e5f2f7d50e7425a340d5d957 /Doc/tutorial
parent5cca6f9fbead1fae27c37204f345a9465cc88959 (diff)
downloadcpython-c87b1aabbd660d111afde326fbbd897fb689a7b8.zip
cpython-c87b1aabbd660d111afde326fbbd897fb689a7b8.tar.gz
cpython-c87b1aabbd660d111afde326fbbd897fb689a7b8.tar.bz2
Fix documentation for input and output tutorial (GH-8231)
The ValueError message ends with a period. (cherry picked from commit 9cffdbffc3b2dec18def1c3e8cfa166d01d609df) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/inputoutput.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index dfa2806..417c3b1 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -338,7 +338,7 @@ automatically fail. ::
>>> f.read()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
- ValueError: I/O operation on closed file
+ ValueError: I/O operation on closed file.
.. _tut-filemethods: