Skip to content

Commit cbfcafa

Browse files
committed
Amend help text capitalisation for uniformity
1 parent 95868c2 commit cbfcafa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pdf_diff/command_line.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -442,14 +442,14 @@ def main():
442442
'side-by-side images with the differences marked (in PNG format).')
443443
parser = argparse.ArgumentParser(description=description)
444444
parser.add_argument('files', nargs='*', # Use '*' to allow --changes with zero files
445-
help='Calculate differences between the two named files')
445+
help='calculate differences between the two named files')
446446
parser.add_argument('--changes', action='store_true', default=False,
447-
help='Read change description from standard input, ignoring files')
447+
help='read change description from standard input, ignoring files')
448448
parser.add_argument('--style', metavar='box|strike|underline,box|stroke|underline',
449449
default='strike,underline',
450-
help='How to mark the differences in the two files (default: strike, underline)')
450+
help='how to mark the differences in the two files (default: strike, underline)')
451451
parser.add_argument('--format', choices=['png','gif','jpeg','ppm','tiff'], default='png',
452-
help='Output format in which to render (default: png)')
452+
help='output format in which to render (default: png)')
453453
parser.add_argument('--top-margin', metavar='margin', default=0., type=float,
454454
help='TODO (default 0.0)')
455455
args = parser.parse_args()

0 commit comments

Comments
 (0)