From d717732928ecdebd9c8a4bca75214761a1d5b86c Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 16 Nov 2023 23:37:20 -1000 Subject: [PATCH] ;doc: Hledger.Read: cleanups (#2113) --- hledger-lib/Hledger/Read.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/hledger-lib/Hledger/Read.hs b/hledger-lib/Hledger/Read.hs index 5ab90df853c..8b3dedd0589 100644 --- a/hledger-lib/Hledger/Read.hs +++ b/hledger-lib/Hledger/Read.hs @@ -27,9 +27,8 @@ involves these steps: - if using -s/--strict: run additional strict checks -- if running import: do the import, updating the journal file - -- if running import or print --new: save .latest files for each input file +- if running print --new: save .latest files for each input file. + (import also does this, as its final step.) == Journal merging @@ -72,8 +71,8 @@ which uses default options and has a simpler type signature. One more variant, @readJournalFilesAndLatestDates@, is like readJournalFiles but exposing the latest transaction date -(and how many on the same day) seen for each file, -after a successful import. This is used by the import command. +(and how many on the same day) seen for each file. +This is used by the import command. -}