From 776a973d2cdd3b2a3aacb4c53671c578a40bc9e6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 8 Aug 2014 19:12:20 -0700 Subject: [PATCH] cli: clarify --debug help --- hledger/Hledger/Cli/Options.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger/Hledger/Cli/Options.hs b/hledger/Hledger/Cli/Options.hs index f5f00d206..996250abe 100644 --- a/hledger/Hledger/Cli/Options.hs +++ b/hledger/Hledger/Cli/Options.hs @@ -81,7 +81,7 @@ helpflags :: [Flag RawOpts] helpflags = [ flagNone ["help","h"] (setboolopt "help") "show general help or (after command) command help" -- ,flagNone ["browse-args"] (setboolopt "browse-args") "use a web UI to select options and build up a command line" - ,flagReq ["debug"] (\s opts -> Right $ setopt "debug" s opts) "N" "show debug output (increase N for more detail)" + ,flagReq ["debug"] (\s opts -> Right $ setopt "debug" s opts) "N" "show debug output if N is 1-9 (default: 0)" ,flagNone ["version"] (setboolopt "version") "show version information" ]