Merge pull request #24242 from robbyt/patch-1

fixes minor typo in comment
Upstream-commit: e3c09a848c7ceab641df13f437210487a40100f7
Component: engine
This commit is contained in:
Doug Davis
2016-07-01 18:10:24 -04:00
committed by GitHub

View File

@ -34,7 +34,7 @@ type Driver interface {
List() ([]Volume, error)
// Get retrieves the volume with the requested name
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() string
}