diff options
Diffstat (limited to 'stdlib/source/library/lux/control/parser/xml.lux')
-rw-r--r-- | stdlib/source/library/lux/control/parser/xml.lux | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/library/lux/control/parser/xml.lux b/stdlib/source/library/lux/control/parser/xml.lux index 4a41dd75d..66b5da36f 100644 --- a/stdlib/source/library/lux/control/parser/xml.lux +++ b/stdlib/source/library/lux/control/parser/xml.lux @@ -1,20 +1,20 @@ (.module: [library - [lux #* + [lux "*" [abstract - [monad (#+ do)]] + [monad {"+" [do]}]] [control - ["." try (#+ Try) ("#\." functor)] - ["." exception (#+ exception:)]] + ["." try {"+" [Try]} ("#\." functor)] + ["." exception {"+" [exception:]}]] [data ["." name ("#\." equivalence codec)] ["." text - ["%" format (#+ format)]] + ["%" format {"+" [format]}]] [collection ["." list] ["." dictionary]] [format - ["/" xml (#+ Attribute Attrs Tag XML)]]]]] + ["/" xml {"+" [Attribute Attrs Tag XML]}]]]]] ["." //]) (type: .public (Parser a) |