diff options
Diffstat (limited to 'stdlib/source/library/lux/control/parser/xml.lux')
-rw-r--r-- | stdlib/source/library/lux/control/parser/xml.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/control/parser/xml.lux b/stdlib/source/library/lux/control/parser/xml.lux index 4af88b9b3..91fd7e67c 100644 --- a/stdlib/source/library/lux/control/parser/xml.lux +++ b/stdlib/source/library/lux/control/parser/xml.lux @@ -32,11 +32,11 @@ (exception: #export (unknown_attribute {expected Attribute} {available (List Attribute)}) (exception.report ["Expected" (%.text (/.attribute expected))] - ["Available" (exception.enumerate (|>> /.attribute %.text) available)])) + ["Available" (exception.listing (|>> /.attribute %.text) available)])) (exception: #export (unconsumed_inputs {inputs (List XML)}) (exception.report - ["Inputs" (exception.enumerate (\ /.codec encode) inputs)])) + ["Inputs" (exception.listing (\ /.codec encode) inputs)])) (def: (run' parser attrs documents) (All [a] (-> (Parser a) Attrs (List XML) (Try a))) |