summaryrefslogtreecommitdiff
path: root/git/refs
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-03-09 11:35:14 +0200
committerSebastian Thiel <byronimo@gmail.com>2017-03-09 11:03:29 +0100
commit8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d (patch)
tree09b460ad1445ca89c11206235665dfa2b3b4566c /git/refs
parentc23ae3a48bb37ae7ebd6aacc8539fee090ca34bd (diff)
downloadgitpython-8dffba51b4fd88f7d26a43cf6d1fbbe3cdb9f44d.tar.gz
Spelling fixes
Diffstat (limited to 'git/refs')
-rw-r--r--git/refs/log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index bab6ae04..623a63db 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -133,7 +133,7 @@ class RefLog(list, Serializable):
of the head in question. Custom query methods allow to retrieve log entries
by date or by other criteria.
- Reflog entries are orded, the first added entry is first in the list, the last
+ Reflog entries are ordered, the first added entry is first in the list, the last
entry, i.e. the last change of the head or reference, is last in the list."""
__slots__ = ('_path', )
@@ -209,7 +209,7 @@ class RefLog(list, Serializable):
""":return: RefLogEntry at the given index
:param filepath: full path to the index file from which to read the entry
:param index: python list compatible index, i.e. it may be negative to
- specifiy an entry counted from the end of the list
+ specify an entry counted from the end of the list
:raise IndexError: If the entry didn't exist