From a1d5ca5650af2267ae541fdfa225da96892c1685 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu@web.de> Date: Tue, 21 Apr 2020 23:35:12 +0200 Subject: [PATCH] Change --help wording --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index db0ed5f..cd0e0d3 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ FLAGS: -n, --no-videos Do not download Opencast videos -s, --skip-files Do not download files -V, --version Prints version information - -v Verbosity (>=1 prints progress) + -v Verbose logging (print objects downloaded) OPTIONS: -o, --output Output directory diff --git a/src/main.rs b/src/main.rs index 25cfcb4..9e54755 100644 --- a/src/main.rs +++ b/src/main.rs @@ -499,7 +499,7 @@ struct Opt { #[structopt(short)] force: bool, - /// Verbosity (>=1 prints progress) + /// Verbose logging (print objects downloaded) #[structopt(short, multiple = true, parse(from_occurrences))] verbose: usize,