summaryrefslogtreecommitdiff
path: root/src/curly_parser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'src/curly_parser.mly')
-rw-r--r--src/curly_parser.mly2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curly_parser.mly b/src/curly_parser.mly
index df377b9..58c6067 100644
--- a/src/curly_parser.mly
+++ b/src/curly_parser.mly
@@ -61,6 +61,6 @@ node_content: n = node { n } | n = leaf_node { n } | n = tag_node { n };
%public config:
ns = list(node); EOF
{
- let root = make "root" in List.fold_left Vytree.adopt root (List.rev ns)
+ let root = make "root" in List.fold_left Vytree.adopt root (List.rev ns) |> Vytree.merge_children
}
;