From c86b6d1ec571ff870a41c02e9b74019ebb0cfaaf Mon Sep 17 00:00:00 2001 From: Lah123 Date: Thu, 13 Jun 2019 14:29:11 +0200 Subject: [PATCH] Correct a typo From concurrrent to concurrent --- pkg/volume/cinder/cinder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/volume/cinder/cinder.go b/pkg/volume/cinder/cinder.go index 9f1d8492be8..a2d69c109a7 100644 --- a/pkg/volume/cinder/cinder.go +++ b/pkg/volume/cinder/cinder.go @@ -503,7 +503,7 @@ func (c *cinderVolumeUnmounter) TearDownAt(dir string) error { c.pdName = path.Base(refs[0]) klog.V(4).Infof("Found volume %s mounted to %s", c.pdName, dir) - // lock the volume (and thus wait for any concurrrent SetUpAt to finish) + // lock the volume (and thus wait for any concurrent SetUpAt to finish) c.plugin.volumeLocks.LockKey(c.pdName) defer c.plugin.volumeLocks.UnlockKey(c.pdName)