Merge pull request #29892 from Microsoft/jjh/volcomment

Correct comment in vol driver interface
This commit is contained in:
Akihiro Suda 2017-01-05 13:11:34 +09:00 коммит произвёл GitHub
Родитель 4617b66c90 c2246f28f6
Коммит 10eee3dfa7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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)