diff options
Diffstat (limited to 'yt/src/cli.rs')
-rw-r--r-- | yt/src/cli.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/yt/src/cli.rs b/yt/src/cli.rs index 73121d1..fd0dfbe 100644 --- a/yt/src/cli.rs +++ b/yt/src/cli.rs @@ -349,11 +349,8 @@ impl Default for SelectCommand { #[derive(Subcommand, Clone, Debug)] pub enum CheckCommand { - /// Check if the given info.json is deserializable + /// Check if the given `*.info.json` file is deserializable. InfoJson { path: PathBuf }, - - /// Check if the given update info.json is deserializable - UpdateInfoJson { path: PathBuf }, } #[derive(Subcommand, Clone, Copy, Debug)] @@ -366,10 +363,9 @@ pub enum CacheCommand { }, /// Perform basic maintenance operations on the database. - /// This helps recovering from invalid db states after a crash (or force exit via CTRL+C). + /// This helps recovering from invalid db states after a crash (or force exit via <CTRL-C>). /// /// 1. Check every path for validity (removing all invalid cache entries) - /// 2. Reset all `status_change` bits of videos to false. #[command(verbatim_doc_comment)] Maintain { /// Check every video (otherwise only the videos to be watched are checked) |