Skip to content

Commit 54a997b

Browse files
hartworkjrfonseca
authored andcommitted
Be more consistent with leading lowercase in --help output
1 parent 2f370c7 commit 54a997b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

gprof2dot.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3735,33 +3735,33 @@ def main(argv=sys.argv[1:]):
37353735
argparser.add_argument(
37363736
'-p', '--path', action="append",
37373737
dest="filter_paths",
3738-
help="Filter all modules not in a specified path")
3738+
help="filter all modules not in a specified path")
37393739
argparser.add_argument(
37403740
'--compare',
37413741
action="store_true",
37423742
dest="compare", default=False,
3743-
help="Compare two graphs with almost identical structure. With this option two files should be provided."
3743+
help="compare two graphs with almost identical structure. With this option two files should be provided."
37443744
"gprof2dot.py [options] --compare [file1] [file2] ...")
37453745
argparser.add_argument(
37463746
'--compare-tolerance',
37473747
type=float, dest="tolerance", default=0.001,
3748-
help="Tolerance threshold for node difference (default=0.001%%)."
3748+
help="tolerance threshold for node difference (default=0.001%%)."
37493749
"If the difference is below this value the nodes are considered identical.")
37503750
argparser.add_argument(
37513751
'--compare-only-slower',
37523752
action="store_true",
37533753
dest="only_slower", default=False,
3754-
help="Display comparison only for function which are slower in second graph.")
3754+
help="display comparison only for function which are slower in second graph.")
37553755
argparser.add_argument(
37563756
'--compare-only-faster',
37573757
action="store_true",
37583758
dest="only_faster", default=False,
3759-
help="Display comparison only for function which are faster in second graph.")
3759+
help="display comparison only for function which are faster in second graph.")
37603760
argparser.add_argument(
37613761
'--compare-color-by-difference',
37623762
action="store_true",
37633763
dest="color_by_difference", default=False,
3764-
help="Color nodes based on the value of the difference. "
3764+
help="color nodes based on the value of the difference. "
37653765
"Nodes with the largest differences represent the hot spots.")
37663766
(options, args) = argparser.parse_args(argv)
37673767

0 commit comments

Comments
 (0)