client/plugin: lint/spelling errors

This commit is contained in:
Nick Ethier
2018-11-27 16:48:59 -05:00
parent 5b11495b31
commit 6ead1a8f72

View File

@@ -7,7 +7,7 @@ import (
log "github.com/hashicorp/go-hclog"
)
// PluginGroup is a utility struct to manage a collectivly orchestrate a
// PluginGroup is a utility struct to manage a collectively orchestrate a
// set of PluginManagers
type PluginGroup struct {
// managers is the set of managers managed, access is synced by mLock
@@ -30,7 +30,7 @@ func New(logger log.Logger) *PluginGroup {
}
}
// RegisterAndRun registers the manager and starts it in a seperate goroutine
// RegisterAndRun registers the manager and starts it in a separate goroutine
func (m *PluginGroup) RegisterAndRun(manager PluginManager) error {
m.mLock.Lock()
if m.shutdown {