Mercurial > public > mercurial-scm > hg-stable
diff mercurial/dagutil.py @ 23216:4e5ac4a3a29b
dagutil: fix id/ix typos in docstrings
author | Mike Edgar <adgar@google.com> |
---|---|
date | Fri, 24 Oct 2014 16:26:44 -0400 |
parents | ce8cea923a6c |
children | 6ddc86eedc3b |
line wrap: on
line diff
--- a/mercurial/dagutil.py Thu Nov 06 11:55:37 2014 +0000 +++ b/mercurial/dagutil.py Fri Oct 24 16:26:44 2014 -0400 @@ -25,7 +25,7 @@ self._inverse = None def nodeset(self): - '''set of all node idxs''' + '''set of all node ixs''' raise NotImplementedError def heads(self): @@ -77,7 +77,7 @@ return self._internalize(id) def internalizeall(self, ids, filterunknown=False): - '''return a list of (or set if given a set) of node ids''' + '''return a list of (or set if given a set) of node ixs''' ixs = self._internalizeall(ids, filterunknown) if isinstance(ids, set): return set(ixs)