Skip to content

Commit

Permalink
Change -v flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya-K2 committed Jan 24, 2024
1 parent 64d5343 commit 1b8a46f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ Usage of ./gspt:
Use Icons
-image string
Show or Hide Image ( 'show' | 'hidden' )
-v Do not display the cover art image.
-v Output version information and exit
-version
Do not display the cover art image.
Output version information and exit
```

## Configuration
Expand Down
4 changes: 2 additions & 2 deletions config/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ type Flag struct {

func parseFlags() {
flag.BoolVar(&Flags.Version, "v", false,
"Do not display the cover art image.")
"Output version information and exit")
flag.BoolVar(&Flags.Version, "version", false,
"Do not display the cover art image.")
"Output version information and exit")
flag.BoolVar(&Flags.UseIcons, "icons", Config.UseIcons,
"Use Icons")
flag.StringVar(&Flags.ConfigPath, "c", userConfigPath,
Expand Down

0 comments on commit 1b8a46f

Please sign in to comment.