Преглед изворни кода

fixes minor typo in comment

Signed-off-by: Robert Terhaar <rterhaar@atlanticdynamic.com>
Robert Terhaar пре 9 година
родитељ
комит
29fea0fd2e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      volume/volume.go

+ 1 - 1
volume/volume.go

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