~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/btree_index.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-06 04:33:55 UTC
  • mfrom: (4031.3.3 faspell-typos)
  • Revision ID: pqm@pqm.ubuntu.com-20090406043355-a94p92pr191lpmv1
(Matt Nordhoff, Frank Aspell) Fix typos in documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
319
319
            new_row = True
320
320
            for row in reversed(rows[:-1]):
321
321
                # Mark the start of the next node in the node above. If it
322
 
                # doesn't fit then propogate upwards until we find one that
 
322
                # doesn't fit then propagate upwards until we find one that
323
323
                # it does fit into.
324
324
                if row.writer.write(key_line):
325
325
                    row.finish_node()
370
370
        self.row_lengths = []
371
371
        # Loop over all nodes adding them to the bottom row
372
372
        # (rows[-1]). When we finish a chunk in a row,
373
 
        # propogate the key that didn't fit (comes after the chunk) to the
 
373
        # propagate the key that didn't fit (comes after the chunk) to the
374
374
        # row above, transitively.
375
375
        for node in node_iterator:
376
376
            if key_count == 0: