]> granicus.if.org Git - python/commitdiff
Fix typo.
authorRaymond Hettinger <python@rcn.com>
Thu, 29 Jan 2009 03:48:02 +0000 (03:48 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 29 Jan 2009 03:48:02 +0000 (03:48 +0000)
Modules/itertoolsmodule.c

index 00f9893a1d728ecc5f6cfcdcc8c2e98f1bcecfa3..ac3941dbef1fd569b3f1f16896805d2a1d5730ce 100644 (file)
@@ -3411,12 +3411,12 @@ starmap(fun, seq) --> fun(*seq[0]), fun(*seq[1]), ...\n\
 tee(it, n=2) --> (it1, it2 , ... itn) splits one iterator into n\n\
 takewhile(pred, seq) --> seq[0], seq[1], until pred fails\n\
 zip_longest(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\
-+\n\
-+Combinatoric generators:\n\
-+product(p, q, ... [repeat=1]) --> cartesian product\n\
-+permutations(p[, r])\n\
-+combinations(p[, r])\n\
-+combinations_with_replacement(p[, r])\n\
+\n\
+Combinatoric generators:\n\
+product(p, q, ... [repeat=1]) --> cartesian product\n\
+permutations(p[, r])\n\
+combinations(p[, r])\n\
+combinations_with_replacement(p[, r])\n\
 ");