From 2b79dfc240307ab948e0341f7668a3cdfdebf033 Mon Sep 17 00:00:00 2001 From: David Sheets Date: Mon, 12 Jun 2017 18:07:42 +0100 Subject: [PATCH] plugin/store: fix ErrAmbiguous docstring Signed-off-by: David Sheets --- plugin/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/store.go b/plugin/store.go index 285489f4bf..7f6e954bf8 100644 --- a/plugin/store.go +++ b/plugin/store.go @@ -29,7 +29,7 @@ type ErrNotFound string func (name ErrNotFound) Error() string { return fmt.Sprintf("plugin %q not found", string(name)) } -// ErrAmbiguous indicates that a plugin was not found locally. +// ErrAmbiguous indicates that more than one plugin was found type ErrAmbiguous string func (name ErrAmbiguous) Error() string {