File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -281,8 +281,8 @@ journalAccountNameTree = accountNameTreeFrom . journalAccountNames
281
281
-- Cf <http://en.wikipedia.org/wiki/Chart_of_accounts#Profit_.26_Loss_accounts>.
282
282
journalProfitAndLossAccountQuery :: Journal -> Query
283
283
journalProfitAndLossAccountQuery j = Or [journalIncomeAccountQuery j
284
- ,journalExpenseAccountQuery j
285
- ]
284
+ ,journalExpenseAccountQuery j
285
+ ]
286
286
287
287
-- | A query for Income (Revenue) accounts in this journal.
288
288
-- This is currently hard-coded to the case-insensitive regex @^(income|revenue)s?(:|$)@.
@@ -298,9 +298,9 @@ journalExpenseAccountQuery _ = Acct "^expenses?(:|$)"
298
298
-- Cf <http://en.wikipedia.org/wiki/Chart_of_accounts#Balance_Sheet_Accounts>.
299
299
journalBalanceSheetAccountQuery :: Journal -> Query
300
300
journalBalanceSheetAccountQuery j = Or [journalAssetAccountQuery j
301
- ,journalLiabilityAccountQuery j
302
- ,journalEquityAccountQuery j
303
- ]
301
+ ,journalLiabilityAccountQuery j
302
+ ,journalEquityAccountQuery j
303
+ ]
304
304
305
305
-- | A query for Asset accounts in this journal.
306
306
-- This is currently hard-coded to the case-insensitive regex @^assets?(:|$)@.
You can’t perform that action at this time.
0 commit comments