From 944554557af827e34a29c8a6cf3a9476f8c603e6 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 15 Jan 2019 06:18:43 -0800 Subject: [PATCH] tweak readJournalFiles type signature --- hledger-lib/Hledger/Read.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-lib/Hledger/Read.hs b/hledger-lib/Hledger/Read.hs index 46f9ce4e3..2536f0c85 100644 --- a/hledger-lib/Hledger/Read.hs +++ b/hledger-lib/Hledger/Read.hs @@ -171,7 +171,7 @@ findReader Nothing (Just path) = -- directives & aliases do not affect subsequent sibling or parent files. -- They do affect included child files though. -- Also the final parse state saved in the Journal does span all files. -readJournalFiles :: InputOpts -> [FilePath] -> IO (Either String Journal) +readJournalFiles :: InputOpts -> [PrefixedFilePath] -> IO (Either String Journal) readJournalFiles iopts = (right mconcat1 . sequence <$>) . mapM (readJournalFile iopts) where