diff --git a/index.html b/index.html index c5a1592..039e8dc 100644 --- a/index.html +++ b/index.html @@ -137,6 +137,7 @@ node. If you have an XML file like the following:

     <?xml version="1.0"?>
+    <data>
         <node>val1</node>
         <node>val2</node>
         <node>val3</node>
@@ -148,6 +149,7 @@ node. If you have an XML file like the following:

<node>val7</node> <node>val8</node> <node>val9</node> + </data>

the node tree returned by mxmlLoadFile() would look @@ -156,6 +158,8 @@ like the following in memory:

     ?xml
       |
+    data
+      |
     node - node - node - group - node - node - node
       |      |      |      |       |      |      |
     val1   val2   val3     |     val7   val8   val9
@@ -337,6 +341,7 @@ for (node = mxmlFindElement(tree, tree, "name", NULL, NULL, MXML_DESCEND);
 
 
     ?xml
+    data
     node
     val1
     node