diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:40:53 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:40:53 (GMT) |
commit | 2d1303676978e75985c4b24521cfd7cece24f153 (patch) | |
tree | 267e6aaf7ca0e68bbeaa940bae007cb3d68f5a82 /Doc/tutorial | |
parent | 8bd656ddb8d316f51c3093f1e1bb0350e0d3e607 (diff) | |
download | cpython-2d1303676978e75985c4b24521cfd7cece24f153.zip cpython-2d1303676978e75985c4b24521cfd7cece24f153.tar.gz cpython-2d1303676978e75985c4b24521cfd7cece24f153.tar.bz2 |
Fix typo. Found by David Pesta on docs@.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/introduction.rst | 2 |
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 |