summaryrefslogtreecommitdiff
path: root/lib/git/index/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/index/base.py')
-rw-r--r--lib/git/index/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/index/base.py b/lib/git/index/base.py
index 5011a932..386926c5 100644
--- a/lib/git/index/base.py
+++ b/lib/git/index/base.py
@@ -445,12 +445,12 @@ class IndexFile(LazyMixin, diff.Diffable, Serializable):
def unmerged_blobs(self):
"""
- Returns
+ :return:
Iterator yielding dict(path : list( tuple( stage, Blob, ...))), being
a dictionary associating a path in the index with a list containing
sorted stage/blob pairs
- Note:
+ :note:
Blobs that have been removed in one side simply do not exist in the
given stage. I.e. a file removed on the 'other' branch whose entries
are at stage 3 will not have a stage 3 entry.