@@ -442,14 +442,14 @@ def main():
442
442
'side-by-side images with the differences marked (in PNG format).' )
443
443
parser = argparse .ArgumentParser (description = description )
444
444
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' )
446
446
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' )
448
448
parser .add_argument ('--style' , metavar = 'box|strike|underline,box|stroke|underline' ,
449
449
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)' )
451
451
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)' )
453
453
parser .add_argument ('--top-margin' , metavar = 'margin' , default = 0. , type = float ,
454
454
help = 'TODO (default 0.0)' )
455
455
args = parser .parse_args ()
0 commit comments