From e36616999df7cb5f91c8b165bc2a1cb2d4d5c25a Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 17 Jun 2011 18:18:03 +0000 Subject: [PATCH] haddock correction: entry is a synonym for transaction, not posting --- hledger-lib/Hledger/Data/Types.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hledger-lib/Hledger/Data/Types.hs b/hledger-lib/Hledger/Data/Types.hs index d0da66d53..9c20771fe 100644 --- a/hledger-lib/Hledger/Data/Types.hs +++ b/hledger-lib/Hledger/Data/Types.hs @@ -5,8 +5,8 @@ Most data types are defined here to avoid import cycles. Here is an overview of the hledger data model: > Journal -- a journal is read from one or more data files. It contains.. -> [Transaction] -- journal transactions, which have date, status, code, description and.. -> [Posting] -- multiple account postings (entries), which have account name and amount +> [Transaction] -- journal transactions (aka entries), which have date, status, code, description and.. +> [Posting] -- multiple account postings, which have account name and amount > [HistoricalPrice] -- historical commodity prices > > Ledger -- a ledger is derived from a journal, by applying a filter specification and doing some further processing. It contains..