Browse code

Merge pull request #24242 from robbyt/patch-1

fixes minor typo in comment

Doug Davis authored on 2016/07/02 07:10:24
Showing 1 changed files
... ...
@@ -34,7 +34,7 @@ type Driver interface {
34 34
 	List() ([]Volume, error)
35 35
 	// Get retrieves the volume with the requested name
36 36
 	Get(name string) (Volume, error)
37
-	// Scope returns the scope of the driver (e.g. `golbal` or `local`).
37
+	// Scope returns the scope of the driver (e.g. `global` or `local`).
38 38
 	// Scope determines how the driver is handled at a cluster level
39 39
 	Scope() string
40 40
 }