diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-03-09 11:35:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2017-03-09 11:03:29 +0100 |
commit | 8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (patch) | |
tree | 09b460ad1445ca89c11206235665dfa2b3b4566c /git/objects/submodule/base.py | |
parent | c23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff) | |
download | gitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz |
Spelling fixes
Diffstat (limited to 'git/objects/submodule/base.py')
-rw-r--r-- | git/objects/submodule/base.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/git/objects/submodule/base.py b/git/objects/submodule/base.py index 55e2ea27..e3912d88 100644 --- a/git/objects/submodule/base.py +++ b/git/objects/submodule/base.py @@ -92,7 +92,7 @@ class Submodule(IndexObject, Iterable, Traversable): k_head_default = 'master' k_default_mode = stat.S_IFDIR | stat.S_IFLNK # submodules are directories with link-status - # this is a bogus type for base class compatability + # this is a bogus type for base class compatibility type = 'submodule' __slots__ = ('_parent_commit', '_url', '_branch_path', '_name', '__weakref__') @@ -423,7 +423,7 @@ class Submodule(IndexObject, Iterable, Traversable): writer.set_value(cls.k_head_option, br.path) sm._branch_path = br.path - # we deliberatly assume that our head matches our index ! + # we deliberately assume that our head matches our index ! sm.binsha = mrepo.head.commit.binsha index.add([sm], write=True) @@ -551,7 +551,7 @@ class Submodule(IndexObject, Iterable, Traversable): with self.repo.config_writer() as writer: writer.set_value(sm_section(self.name), 'url', self.url) # END handle dry_run - # END handle initalization + # END handle initialization # DETERMINE SHAS TO CHECKOUT ############################ |