浏览代码

Merge pull request #24242 from robbyt/patch-1

fixes minor typo in comment
Doug Davis 9 年之前
父节点
当前提交
e3c09a848c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      volume/volume.go

+ 1 - 1
volume/volume.go

@@ -34,7 +34,7 @@ type Driver interface {
 	List() ([]Volume, error)
 	List() ([]Volume, error)
 	// Get retrieves the volume with the requested name
 	// Get retrieves the volume with the requested name
 	Get(name string) (Volume, error)
 	Get(name string) (Volume, error)
-	// Scope returns the scope of the driver (e.g. `golbal` or `local`).
+	// Scope returns the scope of the driver (e.g. `global` or `local`).
 	// Scope determines how the driver is handled at a cluster level
 	// Scope determines how the driver is handled at a cluster level
 	Scope() string
 	Scope() string
 }
 }