From 7e6df618895eb180fb2396aef677ebfcffdfcce5 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sat, 4 Apr 2009 22:09:30 +0000 Subject: [PATCH] better Transaction doc --- Ledger/Transaction.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Ledger/Transaction.hs b/Ledger/Transaction.hs index 1c200f66e..6d1d0d756 100644 --- a/Ledger/Transaction.hs +++ b/Ledger/Transaction.hs @@ -1,9 +1,10 @@ {-| A compound data type for efficiency. A 'Transaction' is a 'Posting' with -its parent 'LedgerTransaction' \'s date and description attached. These -are what we mostly work with when doing reports, and this name is pretty -ingrained. +its parent 'LedgerTransaction' \'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. -}