summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMDT 2001 John Fleck <jfleck@inkstain.net>2001-09-24 03:08:43 +0000
committerJohn Fleck <jfleck@src.gnome.org>2001-09-24 03:08:43 +0000
commitbbb9e4375852daca6a145ac99ef49e9ba11b0d97 (patch)
tree883bf102d1dc0955c52f64668c27b287735c41b3
parentd28e48ab492dbd8f351514d3a0854e3c24eea4bc (diff)
downloadlibxml2-bbb9e4375852daca6a145ac99ef49e9ba11b0d97.tar.gz
xmllint.c - fixing typo
Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net> * xmllint.c - fixing typo
-rw-r--r--ChangeLog4
-rw-r--r--xmllint.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a7d9198e..73a26736 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
+
+ * xmllint.c - fixing typo
+
Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
* HTMLparser.c: small enhancement to prevent loop on
diff --git a/xmllint.c b/xmllint.c
index d249edbe..22f8ea30 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -607,9 +607,9 @@ static void parseAndPrintFile(char *filename) {
if (nb < 0) {
printf("could not get valid list of elements\n");
} else if (nb == 0) {
- printf("No element can be indersted under root\n");
+ printf("No element can be inserted under root\n");
} else {
- printf("%d element types can be indersted under root:\n",
+ printf("%d element types can be inserted under root:\n",
nb);
for (i = 0;i < nb;i++) {
printf("%s\n", list[i]);