Commit Diff


commit - caa87b66bd0e24c588a497c19e9380f9ede70b1f
commit + 610cc027f905579f3cb2e7cbef265ac92a51d97c
blob - 7ef4368ff9c21b787ea032ac231b49b3725f4dd1
blob + c80798faa89472433cc84bd732cc9c396bec6e24
--- README.md
+++ README.md
@@ -30,8 +30,8 @@ scores [OPTIONS]
 *   `-s`, `--standings`: Show league standings/table.
 *   `-t`, `--token <TOKEN>`: API token from football-data.org (required).
 *   `-f`, `--filter <TEAM>`: Filter by team name or abbreviation.
-*   `-a`, `--all`: List all matches across every competition (ignores `--league`). This is the default when no `--league` is given.
-*   `-l`, `--league <LEAGUE>`: League to display. When omitted, all competitions are shown.
+*   `-a`, `--all`: List all matches across every competition (default).
+*   `-l`, `--league <LEAGUE>`: League to display.
 
 ### Leagues
 
blob - 5897e9be4594d4f9c867423ddb314c8f960e0657
blob + d4e0030c044a2c2b4d5e65ad1efa39438722f883
--- src/config.rs
+++ src/config.rs
@@ -17,7 +17,7 @@ pub struct Cli {
     #[arg(long, short = 's')]
     pub standings: bool,
 
-    /// List all matches across every competition (default; ignores --league)
+    /// List all matches across every competition (default)
     #[arg(long, short = 'a')]
     pub all: bool,
 
@@ -25,7 +25,7 @@ pub struct Cli {
     #[arg(long, short = 'f')]
     pub filter: Option<String>,
 
-    /// League to display (defaults to all competitions when omitted)
+    /// League to display
     #[arg(long, short = 'l', value_name = "LEAGUE")]
     pub league: Option<String>,
 }