From 6ead1a8f7293b5748b23e73b9b91c67ca862c2c2 Mon Sep 17 00:00:00 2001 From: Nick Ethier Date: Tue, 27 Nov 2018 16:48:59 -0500 Subject: [PATCH] client/plugin: lint/spelling errors --- client/pluginmanager/group.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/pluginmanager/group.go b/client/pluginmanager/group.go index c84af1ce7..a8e4ace63 100644 --- a/client/pluginmanager/group.go +++ b/client/pluginmanager/group.go @@ -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 {