;cln:import: clarify haddock for getEffectiveAssignment

Signed-off-by: Jonathan Dowland <jon@dow.land>
This commit is contained in:
Jonathan Dowland 2024-03-02 20:56:35 +00:00
parent c5079d4f1e
commit 3b416a76ef

View File

@ -731,10 +731,9 @@ maybeNegate :: MatcherPrefix -> Bool -> Bool
maybeNegate Not origbool = not origbool maybeNegate Not origbool = not origbool
maybeNegate _ origbool = origbool maybeNegate _ origbool = origbool
-- | Given the conversion rules, a CSV record and a hledger field name, collect -- | Given the conversion rules, a CSV record and a hledger field name, find
-- the value templates (and their parent Conditional Blocks where applicable) -- either the last applicable `ConditionalBlock`, or the final value template
-- assigned to this field, if any, by top-level field assignments and -- assigned to this field by a top-level field assignment, if any exist.
-- conditional blocks matching this record.
-- --
-- Note conditional blocks' patterns are matched against an approximation of the -- Note conditional blocks' patterns are matched against an approximation of the
-- CSV record: all the field values, without enclosing quotes, comma-separated. -- CSV record: all the field values, without enclosing quotes, comma-separated.