very small fix

This commit is contained in:
probandula
2017-02-02 14:48:19 +01:00
parent 463f5477a4
commit 9c68bf1dfe
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ var (
font *string = flag.String("font", "", "Font name to use")
fontpath *string = flag.String("fontpath", "", "Font path to load fonts from")
colors *string = flag.String("colors", "", "Character colors separated by ';'\n\tPossible colors: black, red, green, yellow, blue, magenta, cyan, white, or any hexcode (f.e. '885DBA')")
parser *string = flag.String("parser", "terminal", "Parser to use\tPossible parsers: terminal (default), html")
parser *string = flag.String("parser", "terminal", "Parser to use\tPossible parsers: terminal, html")
file *string = flag.String("file", "", "File to write to")
)