diff -r a68036b849b0 -r 6631f3e89b6f mercurial/setdiscovery.py --- a/mercurial/setdiscovery.py Mon Apr 15 14:09:18 2019 -0700 +++ b/mercurial/setdiscovery.py Wed Apr 17 14:37:06 2019 +0200 @@ -119,13 +119,13 @@ self._childrenmap = None def addcommons(self, commons): - """registrer nodes known as common""" + """register nodes known as common""" self._common.addbases(commons) if self._undecided is not None: self._common.removeancestorsfrom(self._undecided) def addmissings(self, missings): - """registrer some nodes as missing""" + """register some nodes as missing""" newmissing = self._repo.revs('%ld::%ld', missings, self.undecided) if newmissing: self.missing.update(newmissing)