diff --git a/src/cli.rs b/src/cli.rs index a47e7c3..0434d61 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -57,7 +57,7 @@ enum Cli { /// install command if the version is not installed already Use { /// Version to switch to |nightly|stable||| - /// + /// /// A version-string can either be `vx.x.x` or `x.x.x` examples: `v0.6.1` and `0.6.0` version: String, @@ -70,7 +70,7 @@ enum Cli { /// out-of-date nightly version Install { /// Version to be installed |nightly|stable||| - /// + /// /// A version-string can either be `vx.x.x` or `x.x.x` examples: `v0.6.1` and `0.6.0` version: String, }, @@ -83,9 +83,9 @@ enum Cli { #[clap(alias = "remove", visible_alias = "rm")] Uninstall { /// Optional Version to be uninstalled |nightly|stable||| - /// + /// /// A version-string can either be `vx.x.x` or `x.x.x` examples: `v0.6.1` and `0.6.0` - /// + /// /// If no Version is provided a prompt is used to select the versions to be uninstalled version: Option, },