]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo.
authorGeorg Brandl <georg@python.org>
Mon, 20 Sep 2010 06:27:02 +0000 (06:27 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 20 Sep 2010 06:27:02 +0000 (06:27 +0000)
Doc/tutorial/datastructures.rst

index 8394c1086bacc7b92bb47d76097e06ab0ded9741..4f3d49852aaaeb466dbb4dcd6b8e6f0aae73db7d 100644 (file)
@@ -371,7 +371,7 @@ with no duplicate elements.  Basic uses include membership testing and
 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.