[Python-checkins] cpython: Fix doc build error

antoine.pitrou python-checkins at python.org
Mon Apr 13 21:08:03 CEST 2015


https://hg.python.org/cpython/rev/dbfadc65f049
changeset:   95598:dbfadc65f049
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Mon Apr 13 21:07:57 2015 +0200
summary:
  Fix doc build error

files:
  Doc/howto/pyporting.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
--- a/Doc/howto/pyporting.rst
+++ b/Doc/howto/pyporting.rst
@@ -350,7 +350,7 @@
 You may also want to use use the ``-bb`` flag with the Python 3 interpreter to
 trigger an exception when you are comparing bytes to strings or bytes to an int
 (the latter is available starting in Python 3.5). By default type-differing
- comparisons simply return ``False``, but if you made a mistake in your
+comparisons simply return ``False``, but if you made a mistake in your
 separation of text/binary data handling or indexing on bytes you wouldn't easily
 find the mistake. This flag will raise an exception when these kinds of
 comparisons occur, making the mistake much easier to track down.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list