summaryrefslogtreecommitdiff
path: root/Doc/tutorial
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/introduction.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 2a1666128a..4613cf76c5 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -73,7 +73,7 @@ operator; to calculate the remainder you can use ``%``::
5
>>> 17 % 3 # the % operator returns the remainder of the division
2
- >>> 5 * 3 + 2 # result * divisor + remainder
+ >>> 5 * 3 + 2 # floored quotient * divisor + remainder
17
With Python, it is possible to use the ``**`` operator to calculate powers [#]_::