plugin/store: fix ErrAmbiguous docstring

Signed-off-by: David Sheets <dsheets@docker.com>
Upstream-commit: 2b79dfc240307ab948e0341f7668a3cdfdebf033
Component: engine
This commit is contained in:
David Sheets
2017-06-12 18:07:42 +01:00
parent cc2f783975
commit 234706e29f
+1 -1
View File
@@ -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 {