fix markup

This commit is contained in:
Benjamin Peterson 2008-12-02 01:12:04 +00:00
parent eb3d8d4665
commit cc163bb5db

View file

@ -265,7 +265,7 @@ Additions
(a, b, *rest) = range(5) (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 * Dictionary comprehensions: ``{k: v for k, v in stuff}`` means the
same thing as ``dict(stuff)`` but is more flexible. same thing as ``dict(stuff)`` but is more flexible.