summaryrefslogtreecommitdiff
path: root/tree.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-12-31 16:16:02 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-12-31 16:16:02 +0000
commitcbaf399537a1fb69ef97b079e4cb553869aaa4d9 (patch)
tree05c7802f8e0c366451d19a827cb7d4186d31825c /tree.c
parent7f9a6806ed3d37063e159b257aec029ffda1e1af (diff)
downloadlibxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.tar.gz
applied 42 documentation patches from Charlie Bozeman. Regenerated the
* *.c include/libxml/*.h doc/html/*: applied 42 documentation patches from Charlie Bozeman. Regenerated the HTML docs. Daniel
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tree.c b/tree.c
index 4ce89200..b75f304a 100644
--- a/tree.c
+++ b/tree.c
@@ -413,7 +413,7 @@ xmlFreeDtd(xmlDtdPtr cur) {
xmlNodePtr next, c = cur->children;
/*
- * Cleanup all the DTD comments they are not in the Dtd
+ * Cleanup all the DTD comments they are not in the DTD
* indexes.
*/
while (c != NULL) {
@@ -1628,7 +1628,7 @@ xmlNewReference(xmlDocPtr doc, const xmlChar *name) {
xmlBufferAdd(cur->content, ent->content, -1);
#endif
/*
- * The parent pointer in entity is a Dtd pointer and thus is NOT
+ * The parent pointer in entity is a DTD pointer and thus is NOT
* updated. Not sure if this is 100% correct.
* -George
*/
@@ -2380,7 +2380,7 @@ xmlFreeNodeList(xmlNodePtr cur) {
*
* The xmlStrEqual comparisons need to be done when (happened with
* XML::libXML and XML::libXSLT) the library is included twice
- * statically in the binary and a tree allocated by one occurent
+ * statically in the binary and a tree allocated by one occurrence
* of the lib gets freed by the other occurrence, in this case
* the string addresses compare are not sufficient.
*/
@@ -2447,7 +2447,7 @@ xmlFreeNode(xmlNodePtr cur) {
*
* The xmlStrEqual comparisons need to be done when (happened with
* XML::libXML and XML::libXSLT) the library is included twice statically
- * in the binary and a tree allocated by one occurent of the lib gets
+ * in the binary and a tree allocated by one occurence of the lib gets
* freed by the other occurrence, in this case the string addresses compare
* are not sufficient.
*/
@@ -2955,7 +2955,7 @@ xmlCopyDtd(xmlDtdPtr dtd) {
* @recursive: if 1 do a recursive copy.
*
* Do a copy of the document info. If recursive, the content tree will
- * be copied too as well as Dtd, namespaces and entities.
+ * be copied too as well as DTD, namespaces and entities.
*
* Returns: a new #xmlDocPtr, or NULL in case of error.
*/