From 11949188d4461c49032d8a9367c3935f31f03010 Mon Sep 17 00:00:00 2001 From: Tal <83217276+talwat@users.noreply.github.com> Date: Sat, 6 Sep 2025 22:09:15 +0200 Subject: [PATCH] chore: remove useless internal doc --- src/main.rs | 2 +- src/player/ui.rs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 92254c1..9a732d6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -75,6 +75,7 @@ enum Commands { #[cfg(feature = "scrape")] Scrape { // The source to scrape from. + #[clap(long, short)] source: scrapers::Source, }, } @@ -96,7 +97,6 @@ async fn main() -> eyre::Result<()> { if let Some(command) = cli.command { match command { - // TODO: Actually distinguish between sources. #[cfg(feature = "scrape")] Commands::Scrape { source } => match source { Source::Archive => scrapers::archive::scrape().await?, diff --git a/src/player/ui.rs b/src/player/ui.rs index 68b8623..259365c 100644 --- a/src/player/ui.rs +++ b/src/player/ui.rs @@ -159,8 +159,6 @@ impl Window { /// The code for the terminal interface itself. /// /// * `minimalist` - All this does is hide the bottom control bar. -/// * `borderless` - Whether to include borders or not. -/// * `width` - The width of player async fn interface( player: Arc, minimalist: bool,