~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/pack.py

  • Committer: Frank Aspell
  • Date: 2009-02-22 16:54:02 UTC
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: frankaspell@googlemail.com-20090222165402-2myrucnu7er5w4ha
Fixing various typos

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
        is a ``list`` and bytes is a function that takes one argument,
235
235
        ``max_length``.
236
236
 
237
 
        You **must not** call the callable after advancing the interator to the
 
237
        You **must not** call the callable after advancing the iterator to the
238
238
        next record.  That is, this code is invalid::
239
239
 
240
240
            record_iter = container.iter_records()
245
245
        As it will give incorrect results and invalidate the state of the
246
246
        ContainerReader.
247
247
 
248
 
        :raises ContainerError: if any sort of containter corruption is
 
248
        :raises ContainerError: if any sort of container corruption is
249
249
            detected, e.g. UnknownContainerFormatError is the format of the
250
250
            container is unrecognised.
251
251
        :seealso: ContainerReader.read
260
260
        methods.  Like with iter_records, it is not safe to use a record object
261
261
        after advancing the iterator to yield next record.
262
262
 
263
 
        :raises ContainerError: if any sort of containter corruption is
 
263
        :raises ContainerError: if any sort of container corruption is
264
264
            detected, e.g. UnknownContainerFormatError is the format of the
265
265
            container is unrecognised.
266
266
        :seealso: iter_records