Skip to content

Commit 7c72e7d

Browse files
authored
update_checkout.py: fix inconsistent options help capitalization (#68374)
`--clone` and `--clone-with-ssh` help strings were using capitalization inconsistent with other options.
1 parent 881d6f9 commit 7c72e7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/update_checkout/update_checkout/update_checkout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,11 +567,11 @@ def main():
567567
""")
568568
parser.add_argument(
569569
"--clone",
570-
help="Obtain Sources for Swift and Related Projects",
570+
help="obtain sources for Swift and related projects",
571571
action="store_true")
572572
parser.add_argument(
573573
"--clone-with-ssh",
574-
help="Obtain Sources for Swift and Related Projects via SSH",
574+
help="Obtain sources for Swift and related projects via SSH",
575575
action="store_true")
576576
parser.add_argument(
577577
"--skip-history",

0 commit comments

Comments
 (0)