From de48b8ce465f47b6159d6e97a09c6f7c313665dd Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 19 Dec 2009 01:17:28 +0000 Subject: [PATCH] docs: update LedgerPosting haddock --- Ledger/LedgerPosting.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Ledger/LedgerPosting.hs b/Ledger/LedgerPosting.hs index a8bfd2ef4..e27212add 100644 --- a/Ledger/LedgerPosting.hs +++ b/Ledger/LedgerPosting.hs @@ -1,10 +1,9 @@ {-| -A compound data type for efficiency. A 'LedgerPosting' is a 'Posting' with -its parent 'Transaction' \'s date and description attached. The -\"transaction\" term is pretty ingrained in the code, docs and with users, -so we've kept it. These are what we work with most of the time when doing -reports. +A 'LedgerPosting' is a 'Posting' with its parent 'Transaction' \'s date +and description attached. We flatten Transactions into multiple +LedgerPostings, which most of the time are simpler to work with. (So far, +at least - this is not quite settled.) -}