summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-12 06:14:03 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-12 06:14:03 (GMT)
commit70c502aacf629bd470a88dc5f139937d62376143 (patch)
tree3556ab7fe5a74b9859818a65ef88fa75683ddf71 /Doc
parentd4704803b95efea847cd0a9065818d771c9941fb (diff)
downloadcpython-70c502aacf629bd470a88dc5f139937d62376143.zip
cpython-70c502aacf629bd470a88dc5f139937d62376143.tar.gz
cpython-70c502aacf629bd470a88dc5f139937d62376143.tar.bz2
Fix typos and English grammar in documentation and code comment
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/2.0.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.0.rst b/Doc/whatsnew/2.0.rst
index 87462f3..4d49af1 100644
--- a/Doc/whatsnew/2.0.rst
+++ b/Doc/whatsnew/2.0.rst
@@ -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::