~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.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:
2643
2643
 
2644
2644
    Once a format is deprecated, just deprecate the initialize and open
2645
2645
    methods on the format class. Do not deprecate the object, as the
2646
 
    object may be created even when a repository instnace hasn't been
 
2646
    object may be created even when a repository instance hasn't been
2647
2647
    created.
2648
2648
 
2649
2649
    Common instance attributes:
2845
2845
# Pre-0.8 formats that don't have a disk format string (because they are
2846
2846
# versioned by the matching control directory). We use the control directories
2847
2847
# disk format string as a key for the network_name because they meet the
2848
 
# constraints (simple string, unique, immmutable).
 
2848
# constraints (simple string, unique, immutable).
2849
2849
network_format_registry.register_lazy(
2850
2850
    "Bazaar-NG branch, format 5\n",
2851
2851
    'bzrlib.repofmt.weaverepo',
3205
3205
        # so the first thing is to get a subset of the revisions to
3206
3206
        # satisfy revision_id in source, and then eliminate those that
3207
3207
        # we do already have.
3208
 
        # this is slow on high latency connection to self, but as as this
 
3208
        # this is slow on high latency connection to self, but as this
3209
3209
        # disk format scales terribly for push anyway due to rewriting
3210
3210
        # inventory.weave, this is considered acceptable.
3211
3211
        # - RBC 20060209