aboutsummaryrefslogtreecommitdiff
path: root/internal/osutil/osutil.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/osutil/osutil.go')
-rw-r--r--internal/osutil/osutil.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/osutil/osutil.go b/internal/osutil/osutil.go
index 4f871587..b5c82455 100644
--- a/internal/osutil/osutil.go
+++ b/internal/osutil/osutil.go
@@ -34,7 +34,7 @@ func IsExist(path string) bool {
return err == nil || os.IsExist(err)
}
-// CurrentUsername returns the current system user
+// CurrentUsername returns the username of the current user.
func CurrentUsername() string {
username := os.Getenv("USER")
if len(username) > 0 {