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 {