# HG changeset patch # User Joerg Sonnenberger # Date 2019-04-17 12:37:06 # Node ID 6631f3e89b6fa8f999f314bf530d9ca61607ab06 # Parent a68036b849b02fa1cadc09b1c61ed4141c1f3799 setdiscovery: fix a few typos Differential Revision: https://phab.mercurial-scm.org/D6263 diff --git a/mercurial/setdiscovery.py b/mercurial/setdiscovery.py --- a/mercurial/setdiscovery.py +++ b/mercurial/setdiscovery.py @@ -119,13 +119,13 @@ class partialdiscovery(object): 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)