Fixed some typos

This commit is contained in:
Tomi Ollila 2024-01-04 19:42:26 +02:00 committed by Johan Malm
parent 6cf19d1cdb
commit 785a34e8ad
7 changed files with 10 additions and 10 deletions

View file

@ -10,7 +10,7 @@ nodename(xmlNode *node, char *buf, int len)
return NULL;
}
/* Ignore superflous 'text.' in node name */
/* Ignore superfluous 'text.' in node name */
if (node->parent && !strcmp((char *)node->name, "text")) {
node = node->parent;
}