From: Georg Brandl Date: Sat, 25 Sep 2010 16:56:36 +0000 (+0000) Subject: #9562: slight clarification. X-Git-Tag: v3.2a3~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fda2106ac2f73d3b0a50196ffb8b01b6eafd99ff;p=thirdparty%2FPython%2Fcpython.git #9562: slight clarification. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index bd8b421210ed..77406c764ce4 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)``.