From 26623cc95b5f6916ce238e9b866f384f363509ed Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 19 May 2019 11:50:41 +0200 Subject: [PATCH] Confused option description with default value for --search-all. --- src/parse_options.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/parse_options.cpp b/src/parse_options.cpp index 9fe9c99..dfb05ca 100644 --- a/src/parse_options.cpp +++ b/src/parse_options.cpp @@ -55,11 +55,12 @@ const options parse_options(const int argc, const char *argv[]) "", &span); op.add> ("s", "search-tags", - "Search for tags. Format: tag1 AND tag2 OR tag3.", + "Search in tags. Format: tag1 AND tag2 OR tag3.", "", &search_tags); op.add> ("", "search-all", - "", "Search tags, title, description and full text.", &search_all); + "Search in tags, title, description and full text.", + "", &search_all); auto option_help = op.add ("h", "help", "Show this help message."); auto option_version = op.add