summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-20 06:27:02 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-20 06:27:02 (GMT)
commit448f20b8b19de43bff1ad589fcc2c9351ef83a36 (patch)
tree292441ef87e907ed091a046ab8ede2cbc5dec961 /Doc
parent2fea9b961d6ea1041ace66037513fcad1fc2173d (diff)
downloadcpython-448f20b8b19de43bff1ad589fcc2c9351ef83a36.zip
cpython-448f20b8b19de43bff1ad589fcc2c9351ef83a36.tar.gz
cpython-448f20b8b19de43bff1ad589fcc2c9351ef83a36.tar.bz2
Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/datastructures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst
index 8394c10..4f3d498 100644
--- a/Doc/tutorial/datastructures.rst
+++ b/Doc/tutorial/datastructures.rst
@@ -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.