浏览代码

Correct comment in vol driver interface

Signed-off-by: John Howard <jhoward@microsoft.com>
John Howard 8 年之前
父节点
当前提交
c2246f28f6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      volume/volume.go

+ 1 - 1
volume/volume.go

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