From 66c41eb3b2b4130c7b68802dd2078534d1f6bf7a Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Thu, 20 Oct 2016 19:20:32 -0300 Subject: Fix some typos --- git/objects/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'git/objects/base.py') diff --git a/git/objects/base.py b/git/objects/base.py index 0b849960..8027299c 100644 --- a/git/objects/base.py +++ b/git/objects/base.py @@ -127,7 +127,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): @@ -137,7 +137,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 @@ -165,7 +165,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): -- cgit v1.2.1