aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index c671d0e..ddc6edc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,9 +17,9 @@ struct Opt {
#[clap(long, default_value = "deck.deck")]
deck: String,
- /// Hide current and remaining card counts
+ /// Hide remaining card counts
#[clap(long)]
- hide_progress: bool,
+ hide_remaining: bool,
}
fn main() -> Result<()> {
@@ -32,7 +32,7 @@ fn main() -> Result<()> {
let mut term = gui::setup_terminal()?;
- match gui::start(&conn, &mut term, &deck_name, args.hide_progress) {
+ match gui::start(&conn, &mut term, &deck_name, args.hide_remaining) {
Ok(()) => (),
Err(msg) => {
// Show errors in TUI, otherwise they are hidden