Fix swapped documentation issue (STR #92)

This commit is contained in:
Michael R Sweet 2009-03-19 05:33:20 +00:00
parent 3f34b234cc
commit 4d81aff146
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ CHANGES - 2009-03-18
CHANGES IN Mini-XML 2.6
- Documentation fixes (STR #92)
- The XML parser now rejects UTF-8 XML files that start with a BOM
(STR #89)
- The mxmldoc program now supports generating Xcode documentation

View File

@ -525,9 +525,9 @@ a user data pointer you supply:</p>
<li><tt>MXML_SAX_DIRECTIVE</tt> - A processing directive was just read</li>
<li><tt>MXML_SAX_ELEMENT_CLOSE</tt> - An open element was just read (<tt>&lt;element&gt;</tt>)</li>
<li><tt>MXML_SAX_ELEMENT_CLOSE</tt> - A close element was just read (<tt>&lt;/element&gt;</tt>)</li>
<li><tt>MXML_SAX_ELEMENT_OPEN</tt> - A close element was just read (<tt>&lt;/element&gt;</tt>)</li>
<li><tt>MXML_SAX_ELEMENT_OPEN</tt> - An open element was just read (<tt>&lt;element&gt;</tt>)</li>
</ul>