diff --git a/merkledag/merkledag.go b/merkledag/merkledag.go
index 4f2efd81d727fa779d5787601d23a8d24715ec08..2b2272cf8c3e3b3cf53bd02a8a5a20b8eaa28ffb 100644
--- a/merkledag/merkledag.go
+++ b/merkledag/merkledag.go
@@ -290,8 +290,8 @@ func FetchGraph(ctx context.Context, root *Node, serv DAGService) chan struct{}
 	return done
 }
 
-// Searches this nodes links for one to the given key,
-// returns the index of said link
+// FindLinks searches this nodes links for the given key,
+// returns the indexes of any links pointing to it
 func FindLinks(n *Node, k u.Key) []int {
 	var out []int
 	for i, lnk := range n.Links {