From 4614300d6a0fd8c0f7af9fb27bb5f19f2c0d2838 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 21 Jan 2025 23:14:43 -1000 Subject: [PATCH] ;fix:print: --help was indicating wrong --round default [#2318] --- hledger/Hledger/Cli/Commands/Print.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hledger/Hledger/Cli/Commands/Print.hs b/hledger/Hledger/Cli/Commands/Print.hs index 663d7bf89..e8a83d872 100644 --- a/hledger/Hledger/Cli/Commands/Print.hs +++ b/hledger/Hledger/Cli/Commands/Print.hs @@ -71,9 +71,9 @@ roundFlag = flagReq ["round"] (\s opts -> Right $ setopt "round" s opts) "TYPE" intercalate "\n" ["how much rounding or padding should be done when displaying amounts ?" ,"none - show original decimal digits," - ," as in journal" + ," as in journal (default)" ,"soft - just add or remove decimal zeros" - ," to match precision (default)" + ," to match precision" ,"hard - round posting amounts to precision" ," (can unbalance transactions)" ,"all - also round cost amounts to precision"