From: Raymond Hettinger Date: Sat, 14 Jun 2014 07:03:28 +0000 (-0700) Subject: Fix typo X-Git-Tag: v3.5.0a1~1448 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b321e79123595cb24ac9b0b48d36b19f7051d076;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Lib/heapq.py b/Lib/heapq.py index 5ab68b010a9a..b20f04de3194 100644 --- a/Lib/heapq.py +++ b/Lib/heapq.py @@ -430,7 +430,7 @@ def merge(*iterables, key=None, reverse=False): # # Combining and simplifying for a rough estimate gives: # -# comparisons = n + k * (log(k, 2) * log(n/k)) + log(k, 2) + log(n/k)) +# comparisons = n + k * (log(k, 2) * log(n/k) + log(k, 2) + log(n/k)) # # Computing the number of comparisons for step 3: # -----------------------------------------------