diff --git a/git/repo/base.py b/git/repo/base.py index 2783e2a4e..8b8f8db80 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -464,7 +464,7 @@ def iter_commits(self, rev=None, paths='', **kwargs): max_count and skip :note: to receive only commits between two named revisions, use the - "revA..revB" revision specifier + "revA...revB" revision specifier :return ``git.Commit[]``""" if rev is None: diff --git a/git/test/test_docs.py b/git/test/test_docs.py index 5b8aa8179..985938e56 100644 --- a/git/test/test_docs.py +++ b/git/test/test_docs.py @@ -18,7 +18,7 @@ def test_init_repo_object(self, rw_dir): from git import Repo join = os.path.join - # rorepo is a a Repo instance pointing to the git-python repository. + # rorepo is a Repo instance pointing to the git-python repository. # For all you know, the first argument to Repo is a path to the repository # you want to work with repo = Repo(self.rorepo.working_tree_dir)