summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-01-14 14:41:41 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-01-14 14:41:41 (GMT)
commitf6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad (patch)
tree7178f2901fcd82108b223016c84bef792487eaba /Doc
parent6ba5665fc7a94ca56f228e490da0a2b604f49b14 (diff)
parent2d1303676978e75985c4b24521cfd7cece24f153 (diff)
downloadcpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.zip
cpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.tar.gz
cpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.tar.bz2
Merge typo fix.
Diffstat (limited to 'Doc')
-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 4101cdc..26e6016 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -74,7 +74,7 @@ operator; to calculate the remainder you can use ``%``::
>>> 5 * 3 + 2 # result * divisor + remainder
17
-With Python is possible to use the ``**`` operator to calculate powers [#]_::
+With Python, it is possible to use the ``**`` operator to calculate powers [#]_::
>>> 5 ** 2 # 5 squared
25