From c619e387ead7fc716b266c3f2939e9e6d0ae40b7 Mon Sep 17 00:00:00 2001 From: Jonathan Dowland Date: Thu, 31 Aug 2023 19:45:10 +0100 Subject: [PATCH] ;fix: import: minor typo --- hledger-lib/Hledger/Read/RulesReader.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-lib/Hledger/Read/RulesReader.hs b/hledger-lib/Hledger/Read/RulesReader.hs index 82926c290..09cac4a91 100644 --- a/hledger-lib/Hledger/Read/RulesReader.hs +++ b/hledger-lib/Hledger/Read/RulesReader.hs @@ -258,7 +258,7 @@ data CsvRules' a = CsvRules' { type CsvRulesParsed = CsvRules' () -- | Type used after parsing is done. Directives, assignments and conditional blocks --- are in the same order as they were in the unput file and rblocksassigning is functional. +-- are in the same order as they were in the input file and rblocksassigning is functional. -- Ready to be used for CSV record processing type CsvRules = CsvRules' (Text -> [ConditionalBlock]) -- XXX simplify