From 435b009ee3f05ccf2145385b4f8835b5661ecf11 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Thu, 8 Mar 2018 14:49:05 +0100 Subject: [PATCH] Remove comment that the port is optional when specifing host. --- src/resply-cli.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resply-cli.cc b/src/resply-cli.cc index b16d4e4..3759f0b 100644 --- a/src/resply-cli.cc +++ b/src/resply-cli.cc @@ -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.") );