diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:41:41 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 14:41:41 (GMT) |
commit | f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad (patch) | |
tree | 7178f2901fcd82108b223016c84bef792487eaba /Doc/tutorial | |
parent | 6ba5665fc7a94ca56f228e490da0a2b604f49b14 (diff) | |
parent | 2d1303676978e75985c4b24521cfd7cece24f153 (diff) | |
download | cpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.zip cpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.tar.gz cpython-f6cb6c5e112cb27a49b8cc268a7cfe71e0a960ad.tar.bz2 |
Merge typo fix.
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 |