From c9275c97aa562567fef4f8a3fa22eb404c72dd42 Mon Sep 17 00:00:00 2001 From: silenceshell Date: Tue, 23 Jul 2019 19:18:29 +0800 Subject: [PATCH] fix grammar err "be of interest to you" --- pkg/util/mount/mount_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/mount/mount_linux.go b/pkg/util/mount/mount_linux.go index 3e438870fa9..ee4d7b35f5d 100644 --- a/pkg/util/mount/mount_linux.go +++ b/pkg/util/mount/mount_linux.go @@ -231,7 +231,7 @@ func (mounter *Mounter) IsMountPointMatch(mp MountPoint, dir string) bool { // It also can not distinguish between mountpoints and symbolic links. // mkdir /tmp/a /tmp/b; mount --bind /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b") // will return true. When in fact /tmp/b is a mount point. If this situation -// if of interest to you, don't use this function... +// is of interest to you, don't use this function... func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) { stat, err := os.Stat(file) if err != nil {