chore: remove useless internal doc

This commit is contained in:
Tal 2025-09-06 22:09:15 +02:00
parent de0ace8525
commit 11949188d4
2 changed files with 1 additions and 3 deletions

View File

@ -75,6 +75,7 @@ enum Commands {
#[cfg(feature = "scrape")] #[cfg(feature = "scrape")]
Scrape { Scrape {
// The source to scrape from. // The source to scrape from.
#[clap(long, short)]
source: scrapers::Source, source: scrapers::Source,
}, },
} }
@ -96,7 +97,6 @@ async fn main() -> eyre::Result<()> {
if let Some(command) = cli.command { if let Some(command) = cli.command {
match command { match command {
// TODO: Actually distinguish between sources.
#[cfg(feature = "scrape")] #[cfg(feature = "scrape")]
Commands::Scrape { source } => match source { Commands::Scrape { source } => match source {
Source::Archive => scrapers::archive::scrape().await?, Source::Archive => scrapers::archive::scrape().await?,

View File

@ -159,8 +159,6 @@ impl Window {
/// The code for the terminal interface itself. /// The code for the terminal interface itself.
/// ///
/// * `minimalist` - All this does is hide the bottom control bar. /// * `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( async fn interface(
player: Arc<Player>, player: Arc<Player>,
minimalist: bool, minimalist: bool,