mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Correct comment in vol driver interface
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
f0a13eb620
commit
c2246f28f6
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue