~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/graph.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-01 01:34:50 UTC
  • mfrom: (4204.2.2 typos_200903)
  • Revision ID: pqm@pqm.ubuntu.com-20090401013450-7a9hdobj3p3f033c
(Matt Nordhoff) Fix a few typos in docstrings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1486
1486
        return self._keys
1487
1487
 
1488
1488
    def is_empty(self):
1489
 
        """Return true if the search lists 1 or more revisions."""
 
1489
        """Return false if the search lists 1 or more revisions."""
1490
1490
        return self._recipe[3] == 0
1491
1491
 
1492
1492
    def refine(self, seen, referenced):
1560
1560
        return keys
1561
1561
 
1562
1562
    def is_empty(self):
1563
 
        """Return true if the search lists 1 or more revisions."""
 
1563
        """Return false if the search lists 1 or more revisions."""
1564
1564
        if revision.NULL_REVISION in self.heads:
1565
1565
            return len(self.heads) == 1
1566
1566
        else: