diff options
-rw-r--r-- | crates/yt/src/cli.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/yt/src/cli.rs b/crates/yt/src/cli.rs index de7a5b8..11346b4 100644 --- a/crates/yt/src/cli.rs +++ b/crates/yt/src/cli.rs @@ -123,12 +123,11 @@ pub enum Command { /// Update the video database Update { + /// The maximal number of videos to fetch for each subscription. #[arg(short, long)] - /// The number of videos to updating max_backlog: Option<usize>, - #[arg(short, long)] - /// The subscriptions to update (can be given multiple times) + /// The subscriptions to update subscriptions: Vec<String>, }, |