Register should be RegisterIterator

This commit is contained in:
Jeremy Jay 2014-07-16 13:49:39 -04:00
parent 995b38fb5b
commit e780c1ceb9
4 changed files with 5 additions and 5 deletions

View file

@ -167,12 +167,12 @@ var (
}
)
// Register adds a new iterator type to the set of acceptable types, returning
// RegisterIterator adds a new iterator type to the set of acceptable types, returning
// the registered Type.
// Calls to Register are idempotent and must be made prior to use of the iterator.
// The conventional approach for use is to include a call to Register in a package
// init() function, saving the Type to a private package var.
func Register(name string) Type {
func RegisterIterator(name string) Type {
lock.Lock()
defer lock.Unlock()
for i, t := range types {

View file

@ -198,7 +198,7 @@ func (it *Iterator) DebugString(indent int) string {
var levelDBType graph.Type
func init() {
levelDBType = graph.Register("leveldb")
levelDBType = graph.RegisterIterator("leveldb")
}
func Type() graph.Type { return levelDBType }

View file

@ -104,7 +104,7 @@ func (it *Iterator) DebugString(indent int) string {
var memType graph.Type
func init() {
memType = graph.Register("llrb")
memType = graph.RegisterIterator("llrb")
}
func Type() graph.Type { return memType }

View file

@ -160,7 +160,7 @@ func (it *Iterator) Size() (int64, bool) {
var mongoType graph.Type
func init() {
mongoType = graph.Register("mongo")
mongoType = graph.RegisterIterator("mongo")
}
func Type() graph.Type { return mongoType }