From 46bdeda107096e20ad1042aaad1f4296d2b6e2dd Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 6 Aug 2023 11:24:18 +0100 Subject: [PATCH] specify what is read from the directory --- src/params/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/params/mod.rs b/src/params/mod.rs index aa58b97..f92355f 100644 --- a/src/params/mod.rs +++ b/src/params/mod.rs @@ -2,7 +2,8 @@ use clap::Parser; #[derive(Parser, Debug)] pub struct Args { - /// The directory to download mp3 files into + /// The directory to download mp3 files into. + /// This is also the directory where the subscription and history files are stored. /// Defaults to the current directory #[arg(short, long, default_value = ".")] pub directory: String,