~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Aaron Bentley
  • Date: 2006-06-12 02:11:45 UTC
  • mfrom: (1759.2.2 integration)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: aaron.bentley@utoronto.ca-20060612021145-0ced20f7791f3c66
Fix some typos (found using aspell) (Jelmer Vernooij).

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
 
150
150
 
151
151
class TreeEntry(object):
152
 
    """An entry that implements the minium interface used by commands.
 
152
    """An entry that implements the minimum interface used by commands.
153
153
 
154
154
    This needs further inspection, it may be better to have 
155
155
    InventoryEntries without ids - though that seems wrong. For now,
1349
1349
        # of a nasty hack; probably it's better to have a transaction object,
1350
1350
        # which can do some finalization when it's either successfully or
1351
1351
        # unsuccessfully completed.  (Denys's original patch did that.)
1352
 
        # RBC 20060206 hookinhg into transaction will couple lock and transaction
1353
 
        # wrongly. Hookinh into unllock on the control files object is fine though.
 
1352
        # RBC 20060206 hooking into transaction will couple lock and transaction
 
1353
        # wrongly. Hooking into unlock on the control files object is fine though.
1354
1354
        
1355
1355
        # TODO: split this per format so there is no ugly if block
1356
1356
        if self._hashcache.needs_write and (
1402
1402
                                      this_tree=self)
1403
1403
                self.set_last_revision(self.branch.last_revision())
1404
1404
            if old_tip and old_tip != self.last_revision():
1405
 
                # our last revision was not the prior branch last reivison
 
1405
                # our last revision was not the prior branch last revision
1406
1406
                # and we have converted that last revision to a pending merge.
1407
1407
                # base is somewhere between the branch tip now
1408
1408
                # and the now pending merge
1724
1724
    def initialize(self, a_bzrdir, revision_id=None):
1725
1725
        """See WorkingTreeFormat.initialize().
1726
1726
        
1727
 
        revision_id allows creating a working tree at a differnet
 
1727
        revision_id allows creating a working tree at a different
1728
1728
        revision than the branch is at.
1729
1729
        """
1730
1730
        if not isinstance(a_bzrdir.transport, LocalTransport):