diff options
author | Harmon <Harmon758@gmail.com> | 2019-06-19 21:01:27 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-06-19 21:01:26 (GMT) |
commit | 35068bd059a3d9bff084ca9dcb04d51185b9ec3b (patch) | |
tree | 092ed484a29a7d3e402979121a401b74349ceb85 | |
parent | f355069a3337711642c3403429afb9faef93f512 (diff) | |
download | cpython-35068bd059a3d9bff084ca9dcb04d51185b9ec3b.zip cpython-35068bd059a3d9bff084ca9dcb04d51185b9ec3b.tar.gz cpython-35068bd059a3d9bff084ca9dcb04d51185b9ec3b.tar.bz2 |
Add missing single quote in io.TextIOWrapper.reconfigure documentation (GH-14246)
Add a missing single quote character in the documentation for `io.TextIOWrapper.reconfigure`.
-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 2fb27c3..5ae30a3 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -945,7 +945,7 @@ Text I/O *errors*, *newline*, *line_buffering* and *write_through*. Parameters not specified keep current settings, except - ``errors='strict`` is used when *encoding* is specified but + ``errors='strict'`` is used when *encoding* is specified but *errors* is not specified. It is not possible to change the encoding or newline if some data |