diff options
Diffstat (limited to 'cli/shared.rs')
-rw-r--r-- | cli/shared.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/shared.rs b/cli/shared.rs index d9375814e..d02c2762e 100644 --- a/cli/shared.rs +++ b/cli/shared.rs @@ -16,17 +16,17 @@ pub enum ReleaseChannel { #[allow(unused)] Lts, - /// Release candidate, poiting to a git hash + /// Release candidate, eg. 1.46.0-rc.0, 2.0.0-rc.1 Rc, } impl ReleaseChannel { pub fn name(&self) -> &str { match self { - Self::Stable => "latest", + Self::Stable => "stable", Self::Canary => "canary", Self::Rc => "release candidate", - Self::Lts => "LTS (long term support)", + Self::Lts => "long term support", } } |