Skip to content

Commit 4c5b91c

Browse files
committed
doc: Fix hyperlink targets.
1 parent b3ebb43 commit 4c5b91c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ As usual, this feature has no effect on Python 3.
315315

316316

317317

318-
Utility functions raise_ and exec_
319-
----------------------------------
318+
Utility functions ``raise_`` and ``exec_``
319+
------------------------------------------
320320

321321
The functions ``raise_with_traceback()`` and ``raise_()`` were
322322
added to ``future.utils`` to offer either the Python 3.x or Python 2.x

docs/conversion_limitations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Contributions to the ``lib2to3``-based fixers for ``futurize`` and
1515
``pasteurize`` are particularly welcome! Please see :ref:`contributing`.
1616

1717

18-
.. _futurize-limitations
18+
.. _futurize-limitations:
1919

2020
Known limitations
2121
-----------------

docs/imports.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Imports
44
=======
55

6-
.. ___future__-imports:
6+
.. _-__future__-imports:
77

88
__future__ imports
99
------------------

docs/standard_library_imports.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ One workaround is to replace the dot with an underscore::
5252

5353
import future.moves.http.client as http_client
5454

55-
import_ and from_import functions
56-
---------------------------------
55+
``import_`` and ``from_import`` functions
56+
-----------------------------------------
5757

5858
A third option, which also works with two-level imports, is to use the
5959
``import_`` and ``from_import`` functions from ``future.standard_library`` as

docs/translation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ This is a standard Python 3 data type, so, when called from Python 3 code,
8484
builtins.dict_keys
8585

8686

87-
.. _translation-limitations
87+
.. _translation-limitations:
8888

8989
Known limitations of ``past.translation``
9090
*******************************************

future/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def append(self, item):
8282
round()
8383
-------
8484
Python 3 modifies the behaviour of ``round()`` to use "Banker's Rounding".
85-
See http://stackoverflow.com/a/10825998_. See the ``newround`` module
85+
See http://stackoverflow.com/a/10825998. See the ``newround`` module
8686
docstring for more details.
8787
8888
"""

0 commit comments

Comments
 (0)