diff --git a/docs/cli/patrons.md b/docs/cli/patrons.md index def7019d4a..43f1693244 100644 --- a/docs/cli/patrons.md +++ b/docs/cli/patrons.md @@ -10,7 +10,7 @@ Lists the individuals on the Patron tier from <> The list refreshes daily; supporting terminals will render each patron's name as a clickable link via OSC 8 hyperlinks. -To appear here, become a patron at <>. +To appear here, become a patron at <>. ## Flags diff --git a/man/man1/mise.1 b/man/man1/mise.1 index 90c8832217..e7229de2ad 100644 --- a/man/man1/mise.1 +++ b/man/man1/mise.1 @@ -1756,7 +1756,7 @@ Lists the individuals on the Patron tier from . The list refreshes daily; supporting terminals will render each patron's name as a clickable link via OSC 8 hyperlinks. -To appear here, become a patron at . +To appear here, become a patron at . .PP \fBUsage:\fR mise patrons [OPTIONS] .PP diff --git a/mise.usage.kdl b/mise.usage.kdl index 31952a4f64..a2953c1cf2 100644 --- a/mise.usage.kdl +++ b/mise.usage.kdl @@ -720,7 +720,7 @@ cmd outdated help="Shows outdated tool versions" { arg "[TOOL@VERSION]…" help="Tool(s) to show outdated versions for\ne.g.: node@20 python@3.10\nIf not specified, all tools in global and local configs will be shown" required=#false var=#true } cmd patrons help="Show the individuals supporting mise as Patron-tier members" { - long_help "Show the individuals supporting mise as Patron-tier members\n\nLists the individuals on the Patron tier from .\nThe list refreshes daily; supporting terminals will render each patron's\nname as a clickable link via OSC 8 hyperlinks.\n\nTo appear here, become a patron at ." + long_help "Show the individuals supporting mise as Patron-tier members\n\nLists the individuals on the Patron tier from .\nThe list refreshes daily; supporting terminals will render each patron's\nname as a clickable link via OSC 8 hyperlinks.\n\nTo appear here, become a patron at ." after_long_help "Examples:\n\n $ mise patrons\n $ mise patrons -J\n $ mise patrons --refresh" flag "-J --json" help="Output in JSON format" flag --refresh help="Bypass the local cache and re-fetch" diff --git a/src/cli/patrons.rs b/src/cli/patrons.rs index 2d26f33c77..0d00675143 100644 --- a/src/cli/patrons.rs +++ b/src/cli/patrons.rs @@ -13,7 +13,7 @@ use crate::{dirs, duration, file}; /// The list refreshes daily; supporting terminals will render each patron's /// name as a clickable link via OSC 8 hyperlinks. /// -/// To appear here, become a patron at . +/// To appear here, become a patron at . #[derive(Debug, clap::Args)] #[clap(verbatim_doc_comment, after_long_help = AFTER_LONG_HELP)] pub struct Patrons { @@ -44,7 +44,7 @@ struct Patron { } const PATRONS_URL: &str = "https://en.dev/patrons.json"; -const SPONSOR_URL: &str = "https://en.dev/sponsor"; +const SPONSOR_URL: &str = "https://en.dev"; const CACHE_TTL: Duration = duration::DAILY; impl Patrons {