summaryrefslogtreecommitdiff
path: root/gitdb/base.py
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2015-01-08 13:10:28 -0500
committerYaroslav Halchenko <debian@onerussian.com>2015-01-08 13:11:57 -0500
commit13ad9b1199331a35e23f65c735acf482be09eae3 (patch)
tree094ce9ebcd9db7ae802d33693995b3295d38f473 /gitdb/base.py
parenta88a777df3909a61be97f1a7b1194dad6de25702 (diff)
downloadgitdb-13ad9b1199331a35e23f65c735acf482be09eae3.tar.gz
minor spell fixes + empty line unification + comparison for python 2.6
Diffstat (limited to 'gitdb/base.py')
-rw-r--r--gitdb/base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitdb/base.py b/gitdb/base.py
index 5760b8a..42e71d0 100644
--- a/gitdb/base.py
+++ b/gitdb/base.py
@@ -19,7 +19,7 @@ __all__ = ('OInfo', 'OPackInfo', 'ODeltaPackInfo',
class OInfo(tuple):
- """Carries information about an object in an ODB, provding information
+ """Carries information about an object in an ODB, providing information
about the binary sha of the object, the type_string as well as the uncompressed size
in bytes.
@@ -29,7 +29,7 @@ class OInfo(tuple):
assert dbi[1] == dbi.type
assert dbi[2] == dbi.size
- The type is designed to be as lighteight as possible."""
+ The type is designed to be as lightweight as possible."""
__slots__ = tuple()
def __new__(cls, sha, type, size):
@@ -69,7 +69,7 @@ class OPackInfo(tuple):
does not include a sha.
Additionally, the pack_offset is the absolute offset into the packfile at which
- all object information is located. The data_offset property points to the abosolute
+ all object information is located. The data_offset property points to the absolute
location in the pack at which that actual data stream can be found."""
__slots__ = tuple()