Skip to content

Commit fa7b012

Browse files
committed
consistent cli lettercaseing
1 parent c02ab88 commit fa7b012

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ fn main() {
1313
.about("Github CODEOWNERS answer sheet")
1414
.arg(
1515
Arg::with_name("codeowners")
16-
.help("an explicit path for a CODEOWNERS file. program will exit 1 if file can not be resolved")
16+
.help("An explicit path for a CODEOWNERS file. program will exit 1 if file can not be resolved")
1717
.takes_value(true)
1818
.short("c")
1919
.long("codeowners"),
2020
)
2121
.arg(
2222
Arg::with_name("teams")
23-
.help("only return teams")
23+
.help("Only return teams")
2424
.short("t")
2525
.long("teams")
2626
.conflicts_with("users")
2727
.conflicts_with("emails"),
2828
)
2929
.arg(
3030
Arg::with_name("users")
31-
.help("only return users")
31+
.help("Only return users")
3232
.short("u")
3333
.long("users")
3434
.conflicts_with("teams")
3535
.conflicts_with("emails"),
3636
)
3737
.arg(
3838
Arg::with_name("emails")
39-
.help("only return emails")
39+
.help("Only return emails")
4040
.short("e")
4141
.long("emails")
4242
.conflicts_with("teams")
@@ -45,7 +45,7 @@ fn main() {
4545
.arg(
4646
Arg::with_name("path")
4747
.help(
48-
"path of file in git repo. if '-' is provided path will \
48+
"Path of file in git repo. if '-' is provided path will \
4949
be read from stdin. program will exit 2 if no owners can \
5050
be resolved",
5151
)

0 commit comments

Comments
 (0)