From 7d2695741f4d1f572a36f7225b6bbb2f569d59d7 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Tue, 7 May 2019 10:49:39 +0200 Subject: Add doc.go for commitgraph packages Signed-off-by: Filip Navara --- plumbing/format/commitgraph/memory.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plumbing/format/commitgraph/memory.go') diff --git a/plumbing/format/commitgraph/memory.go b/plumbing/format/commitgraph/memory.go index f084b85..a4a96e9 100644 --- a/plumbing/format/commitgraph/memory.go +++ b/plumbing/format/commitgraph/memory.go @@ -4,6 +4,8 @@ import ( "gopkg.in/src-d/go-git.v4/plumbing" ) +// MemoryIndex provides a way to build the commit-graph in memory +// for later encoding to file. type MemoryIndex struct { commitData []*CommitData indexMap map[plumbing.Hash]int -- cgit