aboutsummaryrefslogtreecommitdiffstats
path: root/xmllint.c
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 /xmllint.c
parentd28e48ab492dbd8f351514d3a0854e3c24eea4bc (diff)
downloadandroid_external_libxml2-bbb9e4375852daca6a145ac99ef49e9ba11b0d97.tar.gz
android_external_libxml2-bbb9e4375852daca6a145ac99ef49e9ba11b0d97.tar.bz2
android_external_libxml2-bbb9e4375852daca6a145ac99ef49e9ba11b0d97.zip
xmllint.c - fixing typo
Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net> * xmllint.c - fixing typo
Diffstat (limited to 'xmllint.c')
-rw-r--r--xmllint.c4
1 files changed, 2 insertions, 2 deletions
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]);