Bläddra i källkod

plugin/store: fix ErrAmbiguous docstring

Signed-off-by: David Sheets <dsheets@docker.com>
David Sheets 8 år sedan
förälder
incheckning
2b79dfc240
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      plugin/store.go

+ 1 - 1
plugin/store.go

@@ -29,7 +29,7 @@ type ErrNotFound string
 
 
 func (name ErrNotFound) Error() string { return fmt.Sprintf("plugin %q not found", string(name)) }
 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
 type ErrAmbiguous string
 
 
 func (name ErrAmbiguous) Error() string {
 func (name ErrAmbiguous) Error() string {