From 1e52759c3ca86d199e27d247d9f31c173580aa1f Mon Sep 17 00:00:00 2001 From: Remco Verhoef Date: Sun, 26 Jun 2016 20:27:04 +0200 Subject: [PATCH] fix typo (#1987) --- posix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix.go b/posix.go index 20071be45..f482bbca8 100644 --- a/posix.go +++ b/posix.go @@ -111,7 +111,7 @@ func newPosix(diskPath string) (StorageAPI, error) { return fs, nil } -// checkDiskFree verifies if disk path has sufficient minium free disk space. +// checkDiskFree verifies if disk path has sufficient minimum free disk space. func checkDiskFree(diskPath string, minFreeDisk int64) (err error) { if err = checkPathLength(diskPath); err != nil { return err