From 29fea0fd2e9970eb5df0feb0ebef41c5425295f0 Mon Sep 17 00:00:00 2001 From: Robert Terhaar Date: Fri, 1 Jul 2016 17:29:08 -0400 Subject: [PATCH] fixes minor typo in comment Signed-off-by: Robert Terhaar --- volume/volume.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volume/volume.go b/volume/volume.go index 9bb8b7cdf0..89e503280f 100644 --- a/volume/volume.go +++ b/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 }