From 02497c157101837e382d4a4e741f00b80f122e3d Mon Sep 17 00:00:00 2001 From: Raphael Skuza Date: Sun, 14 Jul 2024 20:06:21 +0200 Subject: [PATCH] Fix: Minor fix in description of version command, wrong format in the long description --- cmd/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/version/version.go b/cmd/version/version.go index 0eb883a..ed375f9 100644 --- a/cmd/version/version.go +++ b/cmd/version/version.go @@ -12,7 +12,7 @@ func NewVersionCommand() *cobra.Command { return &cobra.Command{ Use: "version", Short: "Print the version of notewolfy.", - Long: `This will show you the version of notewolfy in the format: {MAJOR}-{MINOR}-{PATCH}.`, + Long: `This will show you the version of notewolfy in the format: v{MAJOR}.{MINOR}.{PATCH}`, Run: versionCommandFunc, } }