From 2abe098a05c2c1ea53715122bd8118361293715a Mon Sep 17 00:00:00 2001 From: Chin-Ya Huang Date: Tue, 16 Jul 2024 12:04:36 +0800 Subject: [PATCH] fix: typo Signed-off-by: Chin-Ya Huang --- csi/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csi/util.go b/csi/util.go index db20e5bb17..1b2020d3f3 100644 --- a/csi/util.go +++ b/csi/util.go @@ -361,7 +361,7 @@ func unmount(path string, mounter mount.Interface) (err error) { return err } -// unnountAndCleanupMountPoint ensures all mount layers for the path are unmounted and the mount directory is removed +// unmountAndCleanupMountPoint ensures all mount layers for the path are unmounted and the mount directory is removed func unmountAndCleanupMountPoint(path string, mounter mount.Interface) error { // we just try to unmount since the path check would get stuck for nfs mounts logrus.Infof("Trying to umount mount point %v", path)