discovery: improve partial discovery documentation
authorBoris Feld <boris.feld@octobus.net>
Fri, 04 Jan 2019 17:54:18 +0100
changeset 41172 3dcc96582627
parent 41171 f46ffd23dae8
child 41173 4145fd3569c3
discovery: improve partial discovery documentation The older documentation could be improved.
mercurial/setdiscovery.py
--- a/mercurial/setdiscovery.py	Fri Dec 28 03:59:38 2018 +0100
+++ b/mercurial/setdiscovery.py	Fri Jan 04 17:54:18 2019 +0100
@@ -167,9 +167,10 @@
     Feed with data from the remote repository, this object keep track of the
     current set of changeset in various states:
 
-    - common:    own nodes I know we both know
-    - undecided: own nodes where I don't know if remote knows them
-    - missing:   own nodes I know remote lacks
+    - common:    revs also known remotely
+    - undecided: revs we don't have information on yet
+    - missing:   revs missing remotely
+    (all tracked revisions are known locally)
     """
 
     def __init__(self, repo, targetheads):