core: cleanup comments on Eventer interface

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2016-09-11 13:51:21 +02:00
parent 39b2ffd6fd
commit fc5d4e6cd8
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ type eventer struct {
type Eventer interface { type Eventer interface {
// Events returns the map of valid Event names. // Events returns the map of valid Event names.
Events() (eventnames map[string]string) Events() (eventnames map[string]string)
// Event returns an event string from map of valid Event names. // Event returns an Event string from map of valid Event names.
// Mostly used to validate that an Event name is valid. // Mostly used to validate that an Event name is valid.
Event(name string) string Event(name string) string
// AddEvent registers a new Event name. // AddEvent registers a new Event name.