From: Zachary Ware Date: Tue, 14 Jan 2014 14:40:53 +0000 (-0600) Subject: Fix typo. Found by David Pesta on docs@. X-Git-Tag: v3.3.4rc1~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d1303676978e75985c4b24521cfd7cece24f153;p=thirdparty%2FPython%2Fcpython.git Fix typo. Found by David Pesta on docs@. --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 4101cdc777e0..26e6016ae2a5 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