From: warner <warner@allmydata.com>
Date: Mon, 16 Apr 2007 18:51:04 +0000 (+0530)
Subject: fec.util.mathutil.permute: fix docstring
X-Git-Url: https://git.rkrishnan.org/simplejson/components/com_hotproperty/provisioning?a=commitdiff_plain;h=68ae7f138b49ca54abef461e725fba424e22c012;p=tahoe-lafs%2Fzfec.git

fec.util.mathutil.permute: fix docstring

darcs-hash:46c300f64e70da2c04cf1e15a4a6d8dd2c732f22
---

diff --git a/zfec/zfec/util/mathutil.py b/zfec/zfec/util/mathutil.py
index 457bec3..609f0df 100644
--- a/zfec/zfec/util/mathutil.py
+++ b/zfec/zfec/util/mathutil.py
@@ -68,7 +68,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,]