From: Brian Warner <warner@allmydata.com>
Date: Mon, 16 Apr 2007 18:51:04 +0000 (-0700)
Subject: fec.util.mathutil.permute: fix docstring
X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~103
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/running.html?a=commitdiff_plain;h=8aa269459570daf5060045564d1fe26bf3898b66;p=tahoe-lafs%2Ftahoe-lafs.git

fec.util.mathutil.permute: fix docstring
---

diff --git a/pyfec/fec/util/mathutil.py b/pyfec/fec/util/mathutil.py
index de95a6a8..ea8312d9 100644
--- a/pyfec/fec/util/mathutil.py
+++ b/pyfec/fec/util/mathutil.py
@@ -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,]