From 4d9dd42dd8e704343102d7e7b394991f5e31c5cb Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Wed, 6 Aug 2014 15:51:31 -0400 Subject: [PATCH] comment --- graph/triplestore.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/triplestore.go b/graph/triplestore.go index bfdf62f..195b687 100644 --- a/graph/triplestore.go +++ b/graph/triplestore.go @@ -37,8 +37,8 @@ import ( // pointers to structs, or merely triples, or whatever works best for the // backing store. // -// These must be comparable, ie, not arrays or maps, as they may be used as keys -// for maps. +// These must be comparable, or implement a `Hashable() interface{}` function +// so that they may be stored in maps. type Value interface{} type TripleStore interface {