Mercurial > hg
changeset 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 | 83a191031f94 |
children | 2f12ac53b528 |
files | mercurial/dagutil.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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)