diff options
author | Zackery Spytz <zspytz@gmail.com> | 2021-05-02 17:29:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 17:29:15 (GMT) |
commit | 7d2b83e9f092a2ea1f715fe028f7c48324bee756 (patch) | |
tree | ff94c17ae07cb860746dba22f67fe18d9cba1adf | |
parent | a5eabc9a39c617475adb7eaee62de7566a995442 (diff) | |
download | cpython-7d2b83e9f092a2ea1f715fe028f7c48324bee756.zip cpython-7d2b83e9f092a2ea1f715fe028f7c48324bee756.tar.gz cpython-7d2b83e9f092a2ea1f715fe028f7c48324bee756.tar.bz2 |
bpo-43990: Fix the footnote ordering in the operator precedence docs (GH-25805)
Footnotes 5 and 6 were in the wrong order.
-rw-r--r-- | Doc/reference/expressions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 5b15376..5ad640a 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1920,8 +1920,8 @@ precedence and have a left-to-right chaining feature as described in the the :keyword:`is` operator, like those involving comparisons between instance methods, or constants. Check their documentation for more info. -.. [#] The ``%`` operator is also used for string formatting; the same - precedence applies. - .. [#] The power operator ``**`` binds less tightly than an arithmetic or bitwise unary operator on its right, that is, ``2**-1`` is ``0.5``. + +.. [#] The ``%`` operator is also used for string formatting; the same + precedence applies. |