summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/refs/log.py')
-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