diff options
Diffstat (limited to 'line-conf-avg')
-rw-r--r-- | line-conf-avg/line-conf-avg.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/line-conf-avg/line-conf-avg.go b/line-conf-avg/line-conf-avg.go index 5b7d2a4..6758fc5 100644 --- a/line-conf-avg/line-conf-avg.go +++ b/line-conf-avg/line-conf-avg.go @@ -38,6 +38,7 @@ func (l LineDetails) Swap(i, j int) { l[i], l[j] = l[j], l[i] } func main() { flag.Usage = func() { fmt.Fprintf(os.Stderr, "Usage: line-conf-avg [-html] [-nosort] prob1 [prob2] [...]\n") + fmt.Fprintf(os.Stderr, "Prints a report of the average confidence for each line\n") flag.PrintDefaults() } var usehtml = flag.Bool("html", false, "output html page") |