]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fec.util.mathutil.permute: fix docstring
authorBrian Warner <warner@allmydata.com>
Mon, 16 Apr 2007 18:51:04 +0000 (11:51 -0700)
committerBrian Warner <warner@allmydata.com>
Mon, 16 Apr 2007 18:51:04 +0000 (11:51 -0700)
pyfec/fec/util/mathutil.py

index de95a6a8e7ddbfe8c37120ed20e08d35b1707047..ea8312d953c1a902d47b65f54e16dcec23315034 100644 (file)
@@ -75,7 +75,7 @@ def permute(l):
     Return all possible permutations of l.
 
     @type l: sequence
-    @rtype a set of sequences
+    @rtype: a list of sequences
     """
     if len(l) == 1:
         return [l,]