From c8129824792ab037865d61ea4330b79386cb2928 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Sun, 2 May 2021 01:03:31 -0700 Subject: [PATCH] bpo-43990: Fix the footnote ordering in the operator precedence docs Footnotes 5 and 6 were in the wrong order. --- Doc/reference/expressions.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 5b153762bf4477d..5ad640ad35d6155 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.