summaryrefslogtreecommitdiff
path: root/git/objects/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-08 07:15:57 +0800
committerGitHub <noreply@github.com>2022-05-08 07:15:57 +0800
commitb30720ee4d9762a03eae4fa7cfa4b0190d81784d (patch)
treee4db57c467db566901d53881012f1ccfe3ca9d4a /git/objects/base.py
parentb3166ece31bfb29e89f6ed4bb9214bf1c03791df (diff)
parentdde3a8bd9229ff25ec8bc03c35d937f43233f48e (diff)
downloadgitpython-b30720ee4d9762a03eae4fa7cfa4b0190d81784d.tar.gz
Merge pull request #1438 from luzpaz/typos
Fix various typos
Diffstat (limited to 'git/objects/base.py')
-rw-r--r--git/objects/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/base.py b/git/objects/base.py
index a3b0f230..66e15a8f 100644
--- a/git/objects/base.py
+++ b/git/objects/base.py
@@ -32,7 +32,7 @@ IndexObjUnion = Union['Tree', 'Blob', 'Submodule']
# --------------------------------------------------------------------------
-_assertion_msg_format = "Created object %r whose python type %r disagrees with the acutual git object type %r"
+_assertion_msg_format = "Created object %r whose python type %r disagrees with the actual git object type %r"
__all__ = ("Object", "IndexObject")