diff options
| author | Brian Campbell | 2020-11-25 23:23:13 +0000 |
|---|---|---|
| committer | Brian Campbell | 2021-02-24 13:17:48 +0000 |
| commit | c54ee75309ea04042de0b7d506754c2477285a12 (patch) | |
| tree | f87d3eedc9f9dffe0a1ad65813c57b2c360133d4 | |
| parent | 6a14c43b8aae9b8bd5c3830c24230d1ead5a11d3 (diff) | |
sailcov: fix usage information
| -rw-r--r-- | sailcov/main.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sailcov/main.ml b/sailcov/main.ml index 63d60745..ffeedf30 100644 --- a/sailcov/main.ml +++ b/sailcov/main.ml @@ -87,16 +87,16 @@ let options = "<file> write a table of cumulative coverage to file"); ( "--histogram", Arg.Set opt_histogram, - "display a histogram of the coverage level"); + " display a histogram of the coverage level"); ( "--cumulative-histogram", Arg.String (fun str -> opt_cumulative_histogram := Some str), "<file> write a table of cumulative histograms to file"); ( "--color-by-count", Arg.Set opt_colour_count, - "color by number of files a span appears in (instead of nesting depth)"); + " color by number of files a span appears in (instead of nesting depth)"); ( "--colour-by-count", Arg.Set opt_colour_count, - "colour by number of files a span appears in (instead of nesting depth)"); + " colour by number of files a span appears in (instead of nesting depth)"); ] type span = { |
