]> granicus.if.org Git - python/commitdiff
Fix doc build error
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 13 Apr 2015 19:07:57 +0000 (21:07 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 13 Apr 2015 19:07:57 +0000 (21:07 +0200)
Doc/howto/pyporting.rst

index 5f7cc34b3d14b44030bcc89541a7c89a4ca5d3e4..7adeea77aac0b5c0a539aa056cad23c63b6dc6e4 100644 (file)
@@ -350,7 +350,7 @@ Python 2 or 3 support.
 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.