[Python-checkins] r84915 - python/branches/py3k/Doc/tutorial/datastructures.rst

georg.brandl python-checkins at python.org
Mon Sep 20 08:27:03 CEST 2010


Author: georg.brandl
Date: Mon Sep 20 08:27:02 2010
New Revision: 84915

Log:
Fix typo.

Modified:
   python/branches/py3k/Doc/tutorial/datastructures.rst

Modified: python/branches/py3k/Doc/tutorial/datastructures.rst
==============================================================================
--- python/branches/py3k/Doc/tutorial/datastructures.rst	(original)
+++ python/branches/py3k/Doc/tutorial/datastructures.rst	Mon Sep 20 08:27:02 2010
@@ -371,7 +371,7 @@
 eliminating duplicate entries.  Set objects also support mathematical operations
 like union, intersection, difference, and symmetric difference.
 
-Curly braces or the :func:`set` function can be use to create sets. Note: To
+Curly braces or the :func:`set` function can be used to create sets.  Note: To
 create an empty set you have to use ``set()``, not ``{}``; the latter creates an
 empty dictionary, a data structure that we discuss in the next section.
 


More information about the Python-checkins mailing list