fec.util.mathutil.permute: fix docstring
This commit is contained in:
parent
652e8a735f
commit
8aa2694595
|
@ -75,7 +75,7 @@ def permute(l):
|
||||||
Return all possible permutations of l.
|
Return all possible permutations of l.
|
||||||
|
|
||||||
@type l: sequence
|
@type l: sequence
|
||||||
@rtype a set of sequences
|
@rtype: a list of sequences
|
||||||
"""
|
"""
|
||||||
if len(l) == 1:
|
if len(l) == 1:
|
||||||
return [l,]
|
return [l,]
|
||||||
|
|
Loading…
Reference in New Issue