Mercurial > hg-stable
changeset 38795:0561e69ed9f1 stable
revset: reword commonancestor()'s help
The new version seems a bit more consistent with other doc comments,
and feels clearer to me (doesn't explain "commonancestors(set)" as
"common ancestors of set").
Differential Revision: https://phab.mercurial-scm.org/D4740
author | Valentin Gatien-Baron <vgatien-baron@janestreet.com> |
---|---|
date | Tue, 25 Sep 2018 16:18:43 -0400 |
parents | 3bc4fce0167f |
children | 84c61c1593c4 |
files | mercurial/revset.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/revset.py Tue Sep 25 16:14:57 2018 -0400 +++ b/mercurial/revset.py Tue Sep 25 16:18:43 2018 -0400 @@ -623,7 +623,7 @@ @predicate('commonancestors(set)', safe=True) def commonancestors(repo, subset, x): - """Returns all common ancestors of the set. + """Changesets that are ancestors of every changeset in set. """ startrevs = getset(repo, fullreposet(repo), x, order=anyorder) if not startrevs: