[Python-checkins] cpython (2.7): Fix typo in documentation

martin.panter python-checkins at python.org
Sun Jun 12 02:28:43 EDT 2016


https://hg.python.org/cpython/rev/7dfee711da42
changeset:   101923:7dfee711da42
branch:      2.7
user:        Martin Panter <vadmium+py at gmail.com>
date:        Sun Jun 12 06:14:03 2016 +0000
summary:
  Fix typo in documentation

files:
  Doc/whatsnew/2.0.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/whatsnew/2.0.rst b/Doc/whatsnew/2.0.rst
--- a/Doc/whatsnew/2.0.rst
+++ b/Doc/whatsnew/2.0.rst
@@ -506,7 +506,7 @@
 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::
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list