From: Georg Brandl Date: Mon, 5 May 2008 20:59:05 +0000 (+0000) Subject: #2769: markup glitch. X-Git-Tag: v2.6a3~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb63565eb5a363b3c155a4b24a01ffacea1482d7;p=python #2769: markup glitch. --- diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 17493e7342..e27109b9d5 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -1693,7 +1693,7 @@ complete list of changes, or look through the CVS logs for all the details. ``permutations(iter[, r])`` returns all the permutations of length *r* of the iterable's elements. If *r* is not specified, it will default to the - number of elements produced by the iterable. + number of elements produced by the iterable. :: itertools.permutations([1,2,3,4], 2) -> [(1, 2), (1, 3), (1, 4),