diff --git a/main.go b/main.go index 53d9b6f..82b9b31 100644 --- a/main.go +++ b/main.go @@ -70,11 +70,11 @@ func (conn readOnlyConn) SetWriteDeadline(t time.Time) error { return nil } func main() { versionFlag := flag.Bool("version", false, "Display the version of the server") - versionFlagShort := flag.Bool("v", false, "Display the version (short)") + versionFlagShort := flag.Bool("v", false, "Display the version") helpFlag := flag.Bool("help", false, "Display help message") - helpFlagShort := flag.Bool("h", false, "Display help message (short)") - bindAddr := flag.String("bind", "localhost:8443", "The address to bind the HTTPS server") - bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the HTTPS server (short)") + helpFlagShort := flag.Bool("h", false, "Display help message") + bindAddr := flag.String("bind", "localhost:8443", "The address to bind the server") + bindAddrShort := flag.String("b", "localhost:8443", "The address to bind the server") flag.Parse() _, err := readVersion()