Correct comment in vol driver interface

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: c2246f28f6bd8f4ebc333cfdb8a9e8ab6d1b7845
Component: engine
This commit is contained in:
John Howard
2017-01-04 12:06:37 -08:00
parent 966dc7a8d7
commit 5bd9457743

View File

@ -29,7 +29,7 @@ const (
type Driver interface {
// Name returns the name of the volume driver.
Name() string
// Create makes a new volume with the given id.
// Create makes a new volume with the given name.
Create(name string, opts map[string]string) (Volume, error)
// Remove deletes the volume.
Remove(vol Volume) (err error)