]> granicus.if.org Git - python/commitdiff
Fix a grammar error in the porting HOWTO as found by Eric Smith.
authorBrett Cannon <brett@python.org>
Mon, 13 Apr 2015 20:32:16 +0000 (16:32 -0400)
committerBrett Cannon <brett@python.org>
Mon, 13 Apr 2015 20:32:16 +0000 (16:32 -0400)
Doc/howto/pyporting.rst

index 7fafc3c2d997699bc3bbf67f6698bd0236cd40d6..a2aaf367c78afda1c70a958a41b3b50ac128be4d 100644 (file)
@@ -207,7 +207,7 @@ that's ``str``/``bytes`` in Python 2 and ``bytes`` in Python 3). The following
 table lists the **unique** methods of each data type across Python 2 & 3
 (e.g., the ``decode()`` method is usable on the equivalent binary data type in
 either Python 2 or 3, but it can't be used by the text data type consistently
-between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Due
+between Python 2 and 3 because ``str`` in Python 3 doesn't have the method). Do
 note that as of Python 3.5 the ``__mod__`` method was added to the bytes type.
 
 ======================== =====================