Mercurial > hg
diff mercurial/manifest.py @ 17428:72803c8edaa4
avoid using abbreviations that look like spelling errors
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Mon, 27 Aug 2012 23:14:27 +0200 |
parents | 9724f8f8850b |
children | c64e646af81e |
line wrap: on
line diff
--- a/mercurial/manifest.py Tue Aug 21 02:41:20 2012 +0200 +++ b/mercurial/manifest.py Mon Aug 27 23:14:27 2012 +0200 @@ -154,7 +154,7 @@ # combine the changed lists into one list for sorting work = [(x, False) for x in added] work.extend((x, True) for x in removed) - # this could use heapq.merge() (from python2.6+) or equivalent + # this could use heapq.merge() (from Python 2.6+) or equivalent # since the lists are already sorted work.sort()