You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is an example from hledger (which should be enabled on CI when we fix this):
accts = dbg5 "accts to show"$-- no need to nub/sort, accountTree willif| declared &¬ used -> matcheddeclaredaccts
|not declared && used -> matchedusedaccts
|otherwise-> matcheddeclaredaccts ++ matchedusedaccts
On the first pass we get:
accts =
dbg5 "accts to show"$if-- no need to nub/sort, accountTree will| declared &¬ used -> matcheddeclaredaccts
|not declared && used -> matchedusedaccts
|otherwise-> matcheddeclaredaccts ++ matchedusedaccts
On the second pass:
accts =
dbg5 "accts to show"$if-- no need to nub/sort, accountTree will| declared &¬ used -> matcheddeclaredaccts
|not declared && used -> matchedusedaccts
|otherwise-> matcheddeclaredaccts ++ matchedusedaccts
The text was updated successfully, but these errors were encountered:
Here is an example from
hledger
(which should be enabled on CI when we fix this):On the first pass we get:
On the second pass:
The text was updated successfully, but these errors were encountered: