]> granicus.if.org Git - python/commitdiff
Fix markup.
authorGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 20:25:55 +0000 (20:25 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 20:25:55 +0000 (20:25 +0000)
Doc/tutorial/datastructures.rst

index c2040751fee30765289f8793ceb52204d34452a1..7b718e85c0d0671503afc4e2a0923f17d3b7229f 100644 (file)
@@ -365,9 +365,9 @@ 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 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.
+Curly braces or the :func:`set` function can be use 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.
 
 Here is a brief demonstration::