summaryrefslogtreecommitdiff
path: root/SAX2.c
diff options
context:
space:
mode:
authorJared Yanovich <jaredyanovich@gmail.com>2019-09-30 17:04:54 +0200
committerNick Wellnhofer <wellnhofer@aevum.de>2019-09-30 18:04:38 +0200
commit2a350ee9b47ad4cf251f94444073785619c31c77 (patch)
tree1aebebbfcfc6ecfc3912261df274b820998b9fba /SAX2.c
parent80b110a95da9deac24029b010ecc4f71cee226e9 (diff)
downloadlibxml2-2a350ee9b47ad4cf251f94444073785619c31c77.tar.gz
Large batch of typo fixes
Closes #109.
Diffstat (limited to 'SAX2.c')
-rw-r--r--SAX2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/SAX2.c b/SAX2.c
index fee66b7f..5f141f9a 100644
--- a/SAX2.c
+++ b/SAX2.c
@@ -40,7 +40,7 @@
* TODO:
*
* macro to flag unimplemented blocks
- * XML_CATALOG_PREFER user env to select between system/public prefered
+ * XML_CATALOG_PREFER user env to select between system/public preferred
* option. C.f. Richard Tobin <richard@cogsci.ed.ac.uk>
*> Just FYI, I am using an environment variable XML_CATALOG_PREFER with
*> values "system" and "public". I have made the default be "system" to
@@ -1512,8 +1512,8 @@ process_external_subset:
attr = elemDecl->attributes;
while (attr != NULL) {
/*
- * Make sure that attributes redefinition occuring in the
- * internal subset are not overriden by definitions in the
+ * Make sure that attributes redefinition occurring in the
+ * internal subset are not overridden by definitions in the
* external subset.
*/
if (attr->defaultValue != NULL) {
@@ -1736,8 +1736,8 @@ xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts)
}
/*
- * set the namespace node, making sure that if the default namspace
- * is unbound on a parent we simply kee it NULL
+ * set the namespace node, making sure that if the default namespace
+ * is unbound on a parent we simply keep it NULL
*/
if ((ns != NULL) && (ns->href != NULL) &&
((ns->href[0] != 0) || (ns->prefix != NULL)))
@@ -2012,7 +2012,7 @@ xmlSAX2AttributeNs(xmlParserCtxtPtr ctxt,
else
ret->name = xmlStrdup(localname);
- /* link at the end to preserv order, TODO speed up with a last */
+ /* link at the end to preserve order, TODO speed up with a last */
if (ctxt->node->properties == NULL) {
ctxt->node->properties = ret;
} else {
@@ -2104,7 +2104,7 @@ xmlSAX2AttributeNs(xmlParserCtxtPtr ctxt,
} else {
/*
* dup now contains a string of the flattened attribute
- * content with entities substitued. Check if we need to
+ * content with entities substituted. Check if we need to
* apply an extra layer of normalization.
* It need to be done twice ... it's an extra burden related
* to the ability to keep references in attributes
@@ -2137,7 +2137,7 @@ xmlSAX2AttributeNs(xmlParserCtxtPtr ctxt,
}
} else {
/*
- * if entities already have been substitued, then
+ * if entities already have been substituted, then
* the attribute as passed is already normalized
*/
dup = xmlStrndup(value, valueend - value);
@@ -2400,7 +2400,7 @@ xmlSAX2StartElementNs(void *ctx,
if (nb_attributes > 0) {
for (j = 0,i = 0;i < nb_attributes;i++,j+=5) {
/*
- * Handle the rare case of an undefined atribute prefix
+ * Handle the rare case of an undefined attribute prefix
*/
if ((attributes[j+1] != NULL) && (attributes[j+2] == NULL)) {
if (ctxt->dictNames) {
@@ -2586,7 +2586,7 @@ xmlSAX2Characters(void *ctx, const xmlChar *ch, int len)
* The whole point of maintaining nodelen and nodemem,
* xmlTextConcat is too costly, i.e. compute length,
* reallocate a new buffer, move data, append ch. Here
- * We try to minimaze realloc() uses and avoid copying
+ * We try to minimize realloc() uses and avoid copying
* and recomputing length over and over.
*/
if (lastChild->content == (xmlChar *)&(lastChild->properties)) {