fixes minor typo in comment

Signed-off-by: Robert Terhaar <rterhaar@atlanticdynamic.com>
Upstream-commit: 29fea0fd2e9970eb5df0feb0ebef41c5425295f0
Component: engine
This commit is contained in:
Robert Terhaar
2016-07-01 17:29:08 -04:00
committed by GitHub
parent 33ecd21d8f
commit 38e9398cfc
+1 -1
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
}