diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2016-01-08 14:29:46 -0500 |
---|---|---|
committer | Yaroslav Halchenko <debian@onerussian.com> | 2016-01-08 14:29:46 -0500 |
commit | a7b609c9f382685448193b59d09329b9a30c7580 (patch) | |
tree | 7931f630d2391d2a90a11b1c95574042f5a0e423 /git/test | |
parent | 3fe8f5df5794015014c53e3adbf53acdb632a8a0 (diff) | |
download | gitpython-a7b609c9f382685448193b59d09329b9a30c7580.tar.gz |
DOC: minor typos
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 2e44f0aa..db3ee62b 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -767,7 +767,7 @@ class TestRepo(TestBase): for kw in ('a', 'all'): res = repo.merge_base(c1, c2, c3, **{kw: True}) assert isinstance(res, list) and len(res) == 1 - # end for eaech keyword signalling all merge-bases to be returned + # end for each keyword signalling all merge-bases to be returned # Test for no merge base - can't do as we have self.failUnlessRaises(GitCommandError, repo.merge_base, c1, 'ffffff') |