From: Georg Brandl Date: Mon, 20 Sep 2010 06:27:02 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v3.2a3~203 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=448f20b8b19de43bff1ad589fcc2c9351ef83a36;p=thirdparty%2FPython%2Fcpython.git Fix typo. --- diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 8394c1086bac..4f3d49852aaa 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.