Remove comment that the port is optional when specifing host.

This commit is contained in:
Christoph Heiss 2018-03-08 14:49:05 +01:00
parent 6c82e125b9
commit 435b009ee3

View file

@ -31,7 +31,7 @@ Options parse_commandline(int argc, char** argv)
auto cli = (
clipp::option("-h", "--host") & clipp::value("host", options.host)
.doc("Set the host (and port, optional) to connect to [default: localhost:6379]"),
.doc("Set the host to connect to [default: localhost:6379]"),
clipp::option("--help").set(show_help).doc("Show help and exit."),
clipp::option("--version").set(show_version).doc("Show version and exit.")
);