Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/commands.py @ 18458:9354a8c1bded stable
debugsuccessorssets: fix typos in docstring
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Mon, 21 Jan 2013 13:47:14 -0200 |
parents | 03442135dff4 |
children | a2e9fe93d9ea |
comparison
equal
deleted
inserted
replaced
18456:8a811fa9a9c0 | 18458:9354a8c1bded |
---|---|
2471 | 2471 |
2472 A successors set of changeset A is a consistent group of revisions that | 2472 A successors set of changeset A is a consistent group of revisions that |
2473 succeed A. It contains non-obsolete changesets only. | 2473 succeed A. It contains non-obsolete changesets only. |
2474 | 2474 |
2475 In most cases a changeset A has a single successors set containing a single | 2475 In most cases a changeset A has a single successors set containing a single |
2476 successors (changeset A replaced by A'). | 2476 successor (changeset A replaced by A'). |
2477 | 2477 |
2478 A changeset that is made obsolete with no successors are called "pruned". | 2478 A changeset that is made obsolete with no successors are called "pruned". |
2479 Such changesets have no successors sets at all. | 2479 Such changesets have no successors sets at all. |
2480 | 2480 |
2481 A changeset that has been "split" will have a successors set containing | 2481 A changeset that has been "split" will have a successors set containing |
2482 more than one successors. | 2482 more than one successor. |
2483 | 2483 |
2484 A changeset that has been rewritten in multiple different ways is called | 2484 A changeset that has been rewritten in multiple different ways is called |
2485 "divergent". Such changesets have multiple successor sets (each of which | 2485 "divergent". Such changesets have multiple successor sets (each of which |
2486 may also be split, i.e. have multiple successors). | 2486 may also be split, i.e. have multiple successors). |
2487 | 2487 |