~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: Vincent Ladeuil
  • Date: 2009-10-27 14:04:29 UTC
  • mto: (4772.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4773.
  • Revision ID: v.ladeuil+lp@free.fr-20091027140429-br7sqcmk3zstngmm
Fix some typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
    prefix = None
139
139
    wants_revision_history = True
140
140
    dwim_catchable_exceptions = (errors.InvalidRevisionSpec,)
141
 
    """Expections that RevisionSpec_dwim._match_on will catch.
 
141
    """Exceptions that RevisionSpec_dwim._match_on will catch.
142
142
 
143
 
    If the revspec is part of dwim_revspecs, it may be tried with an invalid
144
 
    revspec and raise some exception. The exceptions mentioned here will not be
145
 
    reported to the user but simply ignored without stopping the dwim
146
 
    processing.
 
143
    If the revspec is part of ``dwim_revspecs``, it may be tried with an
 
144
    invalid revspec and raises some exception. The exceptions mentioned here
 
145
    will not be reported to the user but simply ignored without stopping the
 
146
    dwim processing.
147
147
    """
148
148
 
149
149
    @staticmethod