diff options
author | Georg Brandl <georg@python.org> | 2010-09-25 16:56:36 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-09-25 16:56:36 (GMT) |
commit | fda2106ac2f73d3b0a50196ffb8b01b6eafd99ff (patch) | |
tree | 694856f175b7d1485b28103ef058e91e5c3d802c /Doc | |
parent | a0fc3d37d31f26a9248ebf57c751a2480d974cec (diff) | |
download | cpython-fda2106ac2f73d3b0a50196ffb8b01b6eafd99ff.zip cpython-fda2106ac2f73d3b0a50196ffb8b01b6eafd99ff.tar.gz cpython-fda2106ac2f73d3b0a50196ffb8b01b6eafd99ff.tar.bz2 |
#9562: slight clarification.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index bd8b421..77406c7 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2157,7 +2157,7 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: existing keys. Return ``None``. :meth:`update` accepts either another dictionary object or an iterable of - key/value pairs (as a tuple or other iterable of length two). If keyword + key/value pairs (as tuples or other iterables of length two). If keyword arguments are specified, the dictionary is then updated with those key/value pairs: ``d.update(red=1, blue=2)``. |