From 5cf4684fea9f489618e0381ff6f40e8e7d48b7aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= Date: Mon, 7 Oct 2024 23:39:41 +0200 Subject: [PATCH] Minor change --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 8455273..bdcd474 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ import ( const versionString = "fstabfmt 1.2.0" func usage() { - fmt.Println(versionString + ` + fmt.Print(versionString + ` Usage: fstabfmt [-i] [-s NUM] [FILE] fstabfmt formats /etc/fstab files. @@ -22,6 +22,7 @@ or modify the given file if the -i flag is used. -s, --spaces NUM Specify the number of spaces used between fields -v, --version Display the current version + `) }