Skip to content

Commit

Permalink
Auto merge of #5396 - dwijnand:arg_targets_all-typos, r=matklad
Browse files Browse the repository at this point in the history
fix typos in arg_targets_all

None
  • Loading branch information
bors committed Apr 20, 2018
2 parents c85d6f3 + 62adf5e commit 0a1add2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/bin/command_prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,21 @@ pub trait AppExt: Sized {
lib: &'static str,
bin: &'static str,
bins: &'static str,
examle: &'static str,
examles: &'static str,
example: &'static str,
examples: &'static str,
test: &'static str,
tests: &'static str,
bench: &'static str,
benchs: &'static str,
benches: &'static str,
all: &'static str,
) -> Self {
self.arg_targets_lib_bin(lib, bin, bins)
._arg(multi_opt("example", "NAME", examle))
._arg(opt("examples", examles))
._arg(multi_opt("example", "NAME", example))
._arg(opt("examples", examples))
._arg(multi_opt("test", "NAME", test))
._arg(opt("tests", tests))
._arg(multi_opt("bench", "NAME", bench))
._arg(opt("benches", benchs))
._arg(opt("benches", benches))
._arg(opt("all-targets", all))
}

Expand Down

0 comments on commit 0a1add2

Please sign in to comment.