diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-22 11:17:48 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-22 11:17:48 +0100 |
commit | 6e9a03f4e2c6b57ed569bf12ca5e2954149006fb (patch) | |
tree | f1f42d6fdc4571a1f2f54ed6d4c9852e25310bd0 | |
parent | feat(yt/version): Show _current_ database version (diff) | |
download | yt-6e9a03f4e2c6b57ed569bf12ca5e2954149006fb.zip |
docs(yt/cli): Remove last references to the external update and status_change bits
-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) |