Skip to content

Commit 1daedac

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent 477788f commit 1daedac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/reference/expressions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Evaluation of these atoms yields the corresponding value.
8989

9090
Several more built-in constants are available as global variables,
9191
but only the ones mentioned here are :ref:`keywords <keywords>`.
92-
In particular, these names cannot be reassigned or used as attributes
92+
In particular, these names cannot be reassigned or used as attributes:
9393

9494
.. code-block:: pycon
9595
@@ -1532,7 +1532,7 @@ The floor division operation can be customized using the special
15321532
pair: operator; % (percent)
15331533

15341534
The ``%`` (modulo) operator yields the remainder from the division of the first
1535-
argument by the second. The numeric arguments are first converted to a
1535+
argument by the second. The numeric arguments are first
15361536
:ref:`converted to a common type <stdtypes-mixed-arithmetic>`.
15371537
A zero right argument raises the :exc:`ZeroDivisionError` exception. The
15381538
arguments may be floating-point numbers, e.g., ``3.14%0.7`` equals ``0.34``

0 commit comments

Comments
 (0)