Changeset 801 in tailor


Ignore:
Timestamp:
09/11/05 20:19:33 (8 years ago)
Author:
lele@…
Hash name:
20050911181933-97f81-dac4ca13fcc7ffd64eaf18f2d78afc4fdd777ec1
Message:

Fix a few typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/monotone.py

    r800 r801  
    3232    This class implements command piping, i.e. a chain of 
    3333    ExternalCommand, each feeding its stdout to the stdin of next 
    34     command in the chain If a command fails, the chain breaks and 
     34    command in the chain. If a command fails, the chain breaks and 
    3535    returns error. 
    3636 
     
    5858    """ 
    5959    Monotone changesets differ from standard Changeset because: 
     60 
    6061    1. only the "revision" field is used for eq/ne comparison 
    6162    2. have additional properties used to handle history linearization 
     
    302303    def convertDiff(self, chset): 
    303304        """ 
    304         Fills a chset with the details data coming by a diff beetween 
     305        Fills a chset with the details data coming by a diff between 
    305306        chset lin_ancestor and revision (i.e. the linearized history) 
    306307        """ 
     
    396397    This class is used to create changesets from revision ids. 
    397398 
    398     Since most backends (and tailor itself) doesn't support monotone 
     399    Since most backends (and tailor itself) don't support monotone 
    399400    multihead feature, sometimes we need to linearize the revision 
    400     graph, creating syntethized (i.e. fake) edges beetween revisions. 
     401    graph, creating syntethized (i.e. fake) edges between revisions. 
    401402 
    402403    The revision itself is real, only its ancestors (and all changes 
    403     beetween) are faked. 
     404    between) are faked. 
    404405 
    405406    To properly do this, changeset are created by a mixture of 'log' 
Note: See TracChangeset for help on using the changeset viewer.