summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 08:16:01 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-27 08:16:01 (GMT)
commit325a1c2f371c034ae8e0d816c9da4bda8e886a15 (patch)
treef646616f6712e555d2576b7ed0373d93b96134c3 /Doc/howto
parentc9d597a46d4c2d6fbed1510e09fdca5a4a81d0a7 (diff)
downloadcpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.zip
cpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.tar.gz
cpython-325a1c2f371c034ae8e0d816c9da4bda8e886a15.tar.bz2
Fix markup errors in the docs and amend suspicious ignores.
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/unicode.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/unicode.rst b/Doc/howto/unicode.rst
index 4fc8c5c..2920aa1 100644
--- a/Doc/howto/unicode.rst
+++ b/Doc/howto/unicode.rst
@@ -532,7 +532,7 @@ of partial coding sequences. The work of implementing this has already been
done for you: the built-in :func:`open` function can return a file-like object
that assumes the file's contents are in a specified encoding and accepts Unicode
parameters for methods such as :meth:`~io.TextIOBase.read` and
-:meth:`~io.TextIOBase.write`. This works through:func:`open`\'s *encoding* and
+:meth:`~io.TextIOBase.write`. This works through :func:`open`\'s *encoding* and
*errors* parameters which are interpreted just like those in :meth:`str.encode`
and :meth:`bytes.decode`.