aboutsummaryrefslogtreecommitdiffstats
path: root/xmllint.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 /xmllint.c
parent7f9a6806ed3d37063e159b257aec029ffda1e1af (diff)
downloadandroid_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.tar.gz
android_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.tar.bz2
android_external_libxml2-cbaf399537a1fb69ef97b079e4cb553869aaa4d9.zip
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 'xmllint.c')
-rw-r--r--xmllint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmllint.c b/xmllint.c
index 1d80b62a..6cdcef3c 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -647,7 +647,7 @@ static void parseAndPrintFile(char *filename) {
ctxt = xmlCreateFileParserCtxt(filename);
if (ctxt == NULL) {
- /* If xmlCreateFileParseCtxt() return NULL something
+ /* If xmlCreateFileParserCtxt() return NULL something
strange happened so we don't want to do anything. Do
we want to print an error message here?
<sven@zen.org> */
@@ -738,7 +738,7 @@ static void parseAndPrintFile(char *filename) {
#ifdef LIBXML_DEBUG_ENABLED
/*
- * shell interraction
+ * shell interaction
*/
if (shell)
xmlShell(doc, filename, xmlShellReadline, stdout);
@@ -983,7 +983,7 @@ static void usage(const char *name) {
#ifdef LIBXML_XINCLUDE_ENABLED
printf("\t--xinclude : do XInclude processing\n");
#endif
- printf("\t--loaddtd : fetch external Dtd\n");
+ printf("\t--loaddtd : fetch external DTD\n");
printf("\t--dtdattr : loaddtd + populate the tree with inherited attributes \n");
printf("\t--dropdtd : remove the DOCTYPE of the input docs\n");
}
@@ -1212,7 +1212,7 @@ main(int argc, char **argv) {
}
if ((timing) && (repeat))
startTimer();
- /* Remember file names. "-" means stding. <sven@zen.org> */
+ /* Remember file names. "-" means stdin. <sven@zen.org> */
if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
if (repeat) {
for (count = 0;count < 100 * repeat;count++)