diff options
author | Georg Brandl <georg@python.org> | 2009-09-05 09:04:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-05 09:04:09 (GMT) |
commit | 609910c210ef7cfd0c3e6d3430315ca914954425 (patch) | |
tree | e567c0c0d8c56628aa3b1d8e37d2172e9792f8de /Doc | |
parent | 7f3ea6a5e554b803393d2c9ba2824e494d136503 (diff) | |
download | cpython-609910c210ef7cfd0c3e6d3430315ca914954425.zip cpython-609910c210ef7cfd0c3e6d3430315ca914954425.tar.gz cpython-609910c210ef7cfd0c3e6d3430315ca914954425.tar.bz2 |
#6841: remove duplicated word.
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 4124952..93ed710 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2061,7 +2061,7 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: :func:`update` accepts either another dictionary object or an iterable of key/value pairs (as a tuple or other iterable of length two). If keyword - arguments are specified, the dictionary is then is updated with those + arguments are specified, the dictionary is then updated with those key/value pairs: ``d.update(red=1, blue=2)``. .. versionchanged:: 2.4 |