]> granicus.if.org Git - python/commitdiff
Docstring nit.
authorRaymond Hettinger <python@rcn.com>
Wed, 28 Feb 2007 18:27:41 +0000 (18:27 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 28 Feb 2007 18:27:41 +0000 (18:27 +0000)
Lib/heapq.py

index 0f67236929aeafaf69960c9082e1de872138d355..39e38008822a0add0e47fa0e989d9316458cc0cf 100644 (file)
@@ -311,7 +311,7 @@ except ImportError:
 def merge(*iterables):
     '''Merge multiple sorted inputs into a single sorted output.
 
-    Similar to sorted(itertools.chain(*iterables)) but returns an iterable,
+    Similar to sorted(itertools.chain(*iterables)) but returns a generator,
     does not pull the data into memory all at once, and assumes that each of
     the input streams is already sorted (smallest to largest).