mercurial/revset.py
branchstable
changeset 39802 3bc4fce0167f
parent 39801 cb5134f2318a
child 39803 0561e69ed9f1
--- a/mercurial/revset.py	Tue Sep 25 16:05:21 2018 -0400
+++ b/mercurial/revset.py	Tue Sep 25 16:14:57 2018 -0400
@@ -624,12 +624,6 @@
 @predicate('commonancestors(set)', safe=True)
 def commonancestors(repo, subset, x):
     """Returns all common ancestors of the set.
-
-    This method is for calculating "::x and ::y" (i.e. all the ancestors that
-    are common to both x and y) in an easy and optimized way. We can't quite
-    use "::head()" because that revset returns "::x + ::y + ..." for each head
-    in the repo (whereas we want "::x *and* ::y").
-
     """
     startrevs = getset(repo, fullreposet(repo), x, order=anyorder)
     if not startrevs: