Code like this has the wrong tree structure after parsing:
<Parent.Element>
<Child.Element name="first"/>
<Child.Element name="second"/>
<Child.Element name="third"/>
</Parent.Element>
The resulting structure is:
<Parent.Element>
<Child.Element name="first">
<Child.Element name="second">
<Child.Element name="third">
</Parent.Element>
Code like this has the wrong tree structure after parsing:
The resulting structure is: