~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inter.py

Fix typo in inter.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        self.target = target
54
54
 
55
55
    def _double_lock(self, lock_source, lock_target):
56
 
        """Take out too locks, rolling back the first if the second throws."""
 
56
        """Take out two locks, rolling back the first if the second throws."""
57
57
        lock_source()
58
58
        try:
59
59
            lock_target()