diff options
| author | Jakob Unterwurzacher | 2025-07-07 19:54:48 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2025-07-07 19:59:35 +0200 | 
| commit | 8f5df19b353e02ffba842fd1b15ccf93da7ee3b4 (patch) | |
| tree | 8f68b74e56a1d20af82e5093a059d180c925f9be /help.go | |
| parent | cdb80ea9825d2e876f1cf579bf960e4da7656b4c (diff) | |
Fix a bunch of staticcheck errors
Tool-assisted.
Diffstat (limited to 'help.go')
| -rw-r--r-- | help.go | 8 | 
1 files changed, 4 insertions, 4 deletions
@@ -13,8 +13,8 @@ const tUsage = "" +  // helpShort is what gets displayed when passed "-h" or on syntax error.  func helpShort() {  	printVersion() -	fmt.Printf("\n") -	fmt.Printf(tUsage) +	fmt.Print("\n") +	fmt.Print(tUsage)  	fmt.Printf(`  Common Options (use -hh to show all):    -aessiv            Use AES-SIV encryption (with -init) @@ -48,8 +48,8 @@ Common Options (use -hh to show all):  // helpLong gets only displayed on "-hh"  func helpLong() {  	printVersion() -	fmt.Printf("\n") -	fmt.Printf(tUsage) +	fmt.Print("\n") +	fmt.Print(tUsage)  	fmt.Printf(`  Notes: All options can equivalently use "-" (single dash) or "--" (double dash).         A standalone "--" stops option parsing.  | 
