summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarian Wieczorek <marluwie@gmx.net>2015-07-16 23:44:30 +0200
committerMarian Wieczorek <marluwie@gmx.net>2015-07-16 23:44:30 +0200
commitf3e78d98e06439eea1036957796f8df9f386930f (patch)
tree26fbb68e87778385f9dd816a85d75d9f97b924b2
parent6ee9751d4e9e9526dbe810b280a4b95a43105ec9 (diff)
downloadgitpython-f3e78d98e06439eea1036957796f8df9f386930f.tar.gz
Correct doc errors
revA..revB &rarr; revA...revB (three instead of two dots) [base.py, line 467](https://github.com/gitpython-developers/GitPython/blob/master/git/repo/base.py#L467) rorepo is a ~~a~~ Repo instance [test_docs.py, line 21](https://github.com/gitpython-developers/GitPython/blob/master/git/test/test_docs.py#L21) closes #314
-rw-r--r--git/repo/base.py2
-rw-r--r--git/test/test_docs.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 2783e2a4..8b8f8db8 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -464,7 +464,7 @@ class Repo(object):
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 5b8aa817..985938e5 100644
--- a/git/test/test_docs.py
+++ b/git/test/test_docs.py
@@ -18,7 +18,7 @@ class Tutorials(TestBase):
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)