diff options
Diffstat (limited to 'lib/xml.ml')
-rw-r--r-- | lib/xml.ml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -8,6 +8,8 @@ type element = { } let tree s : element option = + (** [tree s] is an [element option] representing the XML element inside of stream [s], + if [s] is a complete element from start to end. *) let element (namespace, name) attributes children = Either.Left { namespace; |