[Python-checkins] r85011 - python/branches/py3k/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Sat Sep 25 18:56:42 CEST 2010


Author: georg.brandl
Date: Sat Sep 25 18:56:36 2010
New Revision: 85011

Log:
#9562: slight clarification.

Modified:
   python/branches/py3k/Doc/library/stdtypes.rst

Modified: python/branches/py3k/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/py3k/Doc/library/stdtypes.rst	(original)
+++ python/branches/py3k/Doc/library/stdtypes.rst	Sat Sep 25 18:56:36 2010
@@ -2157,7 +2157,7 @@
       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)``.
 


More information about the Python-checkins mailing list