From 5bd9457743f8fa2cedb59ef9bb87d61e3be62fef Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 4 Jan 2017 12:06:37 -0800 Subject: [PATCH] Correct comment in vol driver interface Signed-off-by: John Howard Upstream-commit: c2246f28f6bd8f4ebc333cfdb8a9e8ab6d1b7845 Component: engine --- components/engine/volume/volume.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/volume/volume.go b/components/engine/volume/volume.go index ad4f877f20..238124fa84 100644 --- a/components/engine/volume/volume.go +++ b/components/engine/volume/volume.go @@ -29,7 +29,7 @@ const ( type Driver interface { // Name returns the name of the volume driver. Name() string - // Create makes a new volume with the given id. + // Create makes a new volume with the given name. Create(name string, opts map[string]string) (Volume, error) // Remove deletes the volume. Remove(vol Volume) (err error)