summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-12-02 01:12:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-12-02 01:12:04 (GMT)
commitcc163bb5dbdc6c372ef67c5c3789c392b62ac614 (patch)
tree4f4c702e9229521c9ae1296220e3b453a03ae7a1 /Doc
parenteb3d8d4665c7e66efc75293fc95d515be54d223c (diff)
downloadcpython-cc163bb5dbdc6c372ef67c5c3789c392b62ac614.zip
cpython-cc163bb5dbdc6c372ef67c5c3789c392b62ac614.tar.gz
cpython-cc163bb5dbdc6c372ef67c5c3789c392b62ac614.tar.bz2
fix markup
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.0.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index d5414dd..4c4ce62 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -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.