Skip to content

Commit a5f5a06

Browse files
committed
doc: Fix some issues with blocks.
1 parent 4c5b91c commit a5f5a06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/conversion_limitations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Contributions to the ``lib2to3``-based fixers for ``futurize`` and
2020
Known limitations
2121
-----------------
2222

23-
``futurize`` doesn't currently make this change automatically::
23+
``futurize`` doesn't currently make this change automatically:
2424

2525
1. Strings containing ``\U`` produce a ``SyntaxError`` on Python 3. An example is::
2626

docs/str_object.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ same behaviours as Python 3's :class:`str`::
8080
>>> assert s.split('B') == ['A', 'CD']
8181

8282
.. If you must ensure identical use of (unicode) strings across Py3 and Py2 in a
83-
.. single-source codebase, you can wrap string literals in a :func:`~str` call, as
84-
.. follows::
83+
.. single-source codebase, you can wrap string literals in a :func:`~str` call,
84+
.. as follows::
8585
..
8686
.. from __future__ import unicode_literals
8787
.. from future.builtins import *

0 commit comments

Comments
 (0)