]> granicus.if.org Git - python/commitdiff
Fix typo. Found by David Pesta on docs@.
authorZachary Ware <zachary.ware@gmail.com>
Tue, 14 Jan 2014 14:40:53 +0000 (08:40 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Tue, 14 Jan 2014 14:40:53 +0000 (08:40 -0600)
Doc/tutorial/introduction.rst

index 4101cdc777e0ca596f8b9517e4199751b2734ce9..26e6016ae2a55d13592162cd8a403ae38f1006f9 100644 (file)
@@ -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