aboutsummaryrefslogtreecommitdiffstats
path: root/xmlIO.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 /xmlIO.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 'xmlIO.c')
-rw-r--r--xmlIO.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlIO.c b/xmlIO.c
index f4ef8bad..bfa80963 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -1214,7 +1214,7 @@ xmlIOHTTPCloseWrite( void * context, const char * http_mthd ) {
close_rc = 0;
else
xmlGenericError( xmlGenericErrorContext,
- "xmlIOHTTPClose: HTTP '%s' of %d %s\n'%s' %s %d\n",
+ "xmlIOHTTPCloseWrite: HTTP '%s' of %d %s\n'%s' %s %d\n",
http_mthd, content_lgth,
"bytes to URI", ctxt->uri,
"failed. HTTP return code:", http_rtn );
@@ -1657,7 +1657,7 @@ xmlParserInputBufferCreateFilename
#endif
/*
- * Try to find one of the input accept method accepting taht scheme
+ * Try to find one of the input accept method accepting that scheme
* Go in reverse to give precedence to user defined handlers.
* try with an unescaped version of the URI
*/
@@ -1743,7 +1743,7 @@ xmlOutputBufferCreateFilename(const char *URI,
/*
- * Try to find one of the output accept method accepting taht scheme
+ * Try to find one of the output accept method accepting that scheme
* Go in reverse to give precedence to user defined handlers.
* try with an unescaped version of the URI
*/
@@ -2089,7 +2089,7 @@ xmlParserInputBufferPush(xmlParserInputBufferPtr in,
* This routine handle the I18N transcoding to internal UTF-8
* This routine is used when operating the parser in normal (pull) mode
*
- * TODO: one should be able to remove one extra copy by copying directy
+ * TODO: one should be able to remove one extra copy by copying directly
* onto in->buffer or in->raw
*
* Returns the number of chars read and stored in the buffer, or -1
@@ -2334,7 +2334,7 @@ xmlOutputBufferFlush(xmlOutputBufferPtr out) {
nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
if (nbchars < 0) {
xmlGenericError(xmlGenericErrorContext,
- "xmlOutputBufferWrite: encoder error\n");
+ "xmlOutputBufferFlush: encoder error\n");
return(-1);
}
}
@@ -2586,7 +2586,7 @@ xmlGetExternalEntityLoader(void) {
*
* Load an external entity, note that the use of this function for
* unparsed entities may generate problems
- * TODO: a more generic External entitiy API must be designed
+ * TODO: a more generic External entity API must be designed
*
* Returns the xmlParserInputPtr or NULL
*/