aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data/format/xml.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/data/format/xml.lux22
1 files changed, 11 insertions, 11 deletions
diff --git a/stdlib/source/documentation/lux/data/format/xml.lux b/stdlib/source/documentation/lux/data/format/xml.lux
index 70f4855b0..2195db0c2 100644
--- a/stdlib/source/documentation/lux/data/format/xml.lux
+++ b/stdlib/source/documentation/lux/data/format/xml.lux
@@ -20,32 +20,32 @@
($.default \\parser.unconsumed_inputs)
($.default \\parser.nowhere)
- ($.documentation (\\parser.Parser it)
+ ($.definition (\\parser.Parser it)
"A parser of XML-encoded data.")
- ($.documentation \\parser.result
+ ($.definition \\parser.result
(format "Applies a parser against a stream of XML documents."
\n "Verifies that all of the inputs are consumed by the parser.")
[(result parser documents)])
- ($.documentation \\parser.text
+ ($.definition \\parser.text
"Yields text from a text node.")
- ($.documentation \\parser.tag
+ ($.definition \\parser.tag
"Yields the tag from the next node.")
- ($.documentation \\parser.attribute
+ ($.definition \\parser.attribute
"Yields the value of an attribute in the current node."
[(attribute name)])
- ($.documentation \\parser.node
+ ($.definition \\parser.node
"Parses the contents of the next node if the tag matches."
[(node expected parser)])
- ($.documentation \\parser.any
+ ($.definition \\parser.any
"Yields the next node.")
- ($.documentation \\parser.somewhere
+ ($.definition \\parser.somewhere
"Applies the parser somewhere among the remaining inputs; instead of demanding that the parser succeeds against the immediate inputs."
[(somewhere parser)])]
[]))
@@ -61,13 +61,13 @@
($.default /.codec)
($.default /.equivalence)
- ($.documentation /.attributes
+ ($.definition /.attributes
"An empty set of XML attributes.")
- ($.documentation /.tag
+ ($.definition /.tag
"The text format of a XML tag."
[(tag name)])
- ($.documentation /.attribute
+ ($.definition /.attribute
"The text format of a XML attribute.")]
[..\\parser]))