From dbfc9f362433b78b8a3d48e30bef4b77ebf3445b Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 16 Dec 2009 17:59:06 +0000 Subject: [PATCH] docs: fix haddock --- Ledger/Types.hs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Ledger/Types.hs b/Ledger/Types.hs index 1e7995568..a7da67a70 100644 --- a/Ledger/Types.hs +++ b/Ledger/Types.hs @@ -4,17 +4,17 @@ Most data types are defined here to avoid import cycles. Here is an overview of the hledger data model as of 0.8: - Ledger -- hledger's ledger, a journal file plus various cached data - Journal -- representation of the journal file - [Transaction] -- journal transactions, with date, description and.. - [Posting] -- one or more journal postings - [LedgerPosting] -- all postings combined with their transaction info - Tree AccountName -- the tree of all account names - Map AccountName Account -- per-account ledger postings and balances for easy lookup +> Ledger -- hledger's ledger, a journal file plus various cached data +> Journal -- representation of the journal file +> [Transaction] -- journal transactions, with date, description and.. +> [Posting] -- ..one or more journal postings +> [LedgerPosting] -- all postings combined with their transaction info +> Tree AccountName -- the tree of all account names +> Map AccountName Account -- per-account ledger postings and balances for easy lookup For more detailed documentation on each type, see the corresponding modules. -A note about terminology: +Here's how some of the terminology has evolved: - ledger 2 had entries containing transactions.