]> granicus.if.org Git - python/commitdiff
Fix typo in documentation
authorMartin Panter <vadmium+py@gmail.com>
Sun, 12 Jun 2016 06:14:03 +0000 (06:14 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sun, 12 Jun 2016 06:14:03 +0000 (06:14 +0000)
Doc/whatsnew/2.0.rst

index 2cdd3a2c15e283dc2cb3560e03e7f9b4f34edfe2..b859d76f24e07ca941c91efd0a164b9f43689afe 100644 (file)
@@ -506,7 +506,7 @@ arguments and/or a dictionary of keyword arguments. In Python 1.5 and earlier,
 you'd use the :func:`apply` built-in function: ``apply(f, args, kw)`` calls the
 function :func:`f` with the argument tuple *args* and the keyword arguments in
 the dictionary *kw*.  :func:`apply`  is the same in 2.0, but thanks to a patch
-from Greg Ewing, ``f(*args, **kw)`` as a shorter and clearer way to achieve the
+from Greg Ewing, ``f(*args, **kw)`` is a shorter and clearer way to achieve the
 same effect.  This syntax is symmetrical with the syntax for defining
 functions::