]> granicus.if.org Git - python/commitdiff
fix markup
authorBenjamin Peterson <benjamin@python.org>
Tue, 2 Dec 2008 01:12:04 +0000 (01:12 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 2 Dec 2008 01:12:04 +0000 (01:12 +0000)
Doc/whatsnew/3.0.rst

index d5414dd65deae73a18fefe1d9b9f0593c46b8a41..4c4ce6204318adbdae2c78b063ffece9f81d3876 100644 (file)
@@ -265,7 +265,7 @@ Additions
 
     (a, b, *rest) = range(5)
 
-  This sets *a* to 0, *b* to 1, and *rest to ``[2, 3, 4]``.
+  This sets *a* to 0, *b* to 1, and \*rest to ``[2, 3, 4]``.
 
 * Dictionary comprehensions: ``{k: v for k, v in stuff}`` means the
   same thing as ``dict(stuff)`` but is more flexible.