Mercurial > public > mercurial-scm > hg
comparison mercurial/copies.py @ 33879:169baf3d1d3c
copies: fix typo in comment
"will not be limited" was meant to be "will not be visited". I missed this
when writing the original graft-through-rename patch series.
author | G?bor Stefanik <gabor.stefanik@nng.com> |
---|---|
date | Tue, 22 Aug 2017 16:08:31 +0200 |
parents | 252fb66ee5bb |
children | edf503e5dfd4 |
comparison
equal
deleted
inserted
replaced
33878:c90014d5cdc3 | 33879:169baf3d1d3c |
---|---|
635 tca = topological common ancestor for graft-like scenarios | 635 tca = topological common ancestor for graft-like scenarios |
636 remotebase = True if base is outside tca::srcctx, False otherwise | 636 remotebase = True if base is outside tca::srcctx, False otherwise |
637 limit = the rev number to not search beyond | 637 limit = the rev number to not search beyond |
638 data = dictionary of dictionary to store copy data. (see mergecopies) | 638 data = dictionary of dictionary to store copy data. (see mergecopies) |
639 | 639 |
640 note: limit is only an optimization, and there is no guarantee that | 640 note: limit is only an optimization, and provides no guarantee that |
641 irrelevant revisions will not be limited | 641 irrelevant revisions will not be visited |
642 there is no easy way to make this algorithm stop in a guaranteed way | 642 there is no easy way to make this algorithm stop in a guaranteed way |
643 once it "goes behind a certain revision". | 643 once it "goes behind a certain revision". |
644 """ | 644 """ |
645 | 645 |
646 msrc = srcctx.manifest() | 646 msrc = srcctx.manifest() |