Skip to content

Commit

Permalink
Auto merge of #9552 - taiki-e:typo, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix typos in command_prelude.rs
  • Loading branch information
bors committed Jun 7, 2021
2 parents 11eec1d + 98df612 commit ed0c8c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cargo/util/command_prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub trait AppExt: Sized {

fn arg_package(self, package: &'static str) -> Self {
self._arg(
optinal_opt("package", package)
optional_opt("package", package)
.short("p")
.value_name("SPEC"),
)
Expand Down Expand Up @@ -225,7 +225,7 @@ pub trait AppExt: Sized {
fn arg_future_incompat_report(self) -> Self {
self._arg(opt(
"future-incompat-report",
"Ouputs a future incompatibility report at the end of the build (unstable)",
"Outputs a future incompatibility report at the end of the build (unstable)",
))
}
}
Expand All @@ -240,7 +240,7 @@ pub fn opt(name: &'static str, help: &'static str) -> Arg<'static, 'static> {
Arg::with_name(name).long(name).help(help)
}

pub fn optinal_opt(name: &'static str, help: &'static str) -> Arg<'static, 'static> {
pub fn optional_opt(name: &'static str, help: &'static str) -> Arg<'static, 'static> {
opt(name, help).min_values(0)
}

Expand Down

0 comments on commit ed0c8c6

Please sign in to comment.