Browse code

plugin/store: fix ErrAmbiguous docstring

Signed-off-by: David Sheets <dsheets@docker.com>

David Sheets authored on 2017/06/13 02:07:42
Showing 1 changed files
... ...
@@ -29,7 +29,7 @@ type ErrNotFound string
29 29
 
30 30
 func (name ErrNotFound) Error() string { return fmt.Sprintf("plugin %q not found", string(name)) }
31 31
 
32
-// ErrAmbiguous indicates that a plugin was not found locally.
32
+// ErrAmbiguous indicates that more than one plugin was found
33 33
 type ErrAmbiguous string
34 34
 
35 35
 func (name ErrAmbiguous) Error() string {