From 2dd7ef910fa78ac083afd374bb0747380c1902ec Mon Sep 17 00:00:00 2001 From: demget <30910794+demget@users.noreply.github.com> Date: Thu, 5 Nov 2020 16:47:21 +0200 Subject: [PATCH] Fix usage message typo (#8) --- telegram-bot-api/telegram-bot-api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram-bot-api/telegram-bot-api.cpp b/telegram-bot-api/telegram-bot-api.cpp index bd25f6b..3422591 100644 --- a/telegram-bot-api/telegram-bot-api.cpp +++ b/telegram-bot-api/telegram-bot-api.cpp @@ -163,7 +163,7 @@ int main(int argc, char *argv[]) { return std::string(); }(std::getenv("TELEGRAM_API_HASH")); - options.set_usage(td::Slice(argv[0]), "--api_id= --api-hash= [--local] [OPTION]..."); + options.set_usage(td::Slice(argv[0]), "--api-id= --api-hash= [--local] [OPTION]..."); options.set_description("Telegram Bot API server"); options.add_option('h', "help", "display this help text and exit", [&] { need_print_usage = true; }); options.add_option('\0', "local", "allow the Bot API server to serve local requests",