summaryrefslogtreecommitdiff
path: root/git/objects/base.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-22 12:47:45 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-22 12:47:45 +0200
commita25365fea0ea3b92ba96cc281facd308311def1e (patch)
tree5653a9923aebfc8b53407f8d1ef0d9d6497da081 /git/objects/base.py
parent76ac61a2b4bb10c8434a7d6fc798b115b4b7934d (diff)
parentcaa0ea7a0893fe90ea043843d4e6ad407126d7b8 (diff)
downloadgitpython-a25365fea0ea3b92ba96cc281facd308311def1e.tar.gz
Merge remote-tracking branch 'origin/master' into exp_git_dir
Diffstat (limited to 'git/objects/base.py')
-rw-r--r--git/objects/base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/objects/base.py b/git/objects/base.py
index d6080779..4f078e38 100644
--- a/git/objects/base.py
+++ b/git/objects/base.py
@@ -126,7 +126,7 @@ class IndexObject(Object):
SubModule objects"""
__slots__ = ("path", "mode")
- # for compatability with iterable lists
+ # for compatibility with iterable lists
_id_attribute_ = 'path'
def __init__(self, repo, binsha, mode=None, path=None):
@@ -136,7 +136,7 @@ class IndexObject(Object):
:param binsha: 20 byte sha1
:param mode:
is the stat compatible file mode as int, use the stat module
- to evaluate the infomration
+ to evaluate the information
:param path:
is the path to the file in the file system, relative to the git repository root, i.e.
file.ext or folder/other.ext
@@ -164,7 +164,7 @@ class IndexObject(Object):
% (attr, type(self).__name__))
else:
super(IndexObject, self)._set_cache_(attr)
- # END hanlde slot attribute
+ # END handle slot attribute
@property
def name(self):