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
diff --git a/include/libxml/entities.h b/include/libxml/entities.h
index 33d3fcf..4ce0751 100644
--- a/include/libxml/entities.h
+++ b/include/libxml/entities.h
@@ -1,5 +1,5 @@
 /*
- * entities.h : interface for the XML entities handking
+ * entities.h : interface for the XML entities handling
  *
  * See Copyright for the status of this software.
  *
@@ -35,7 +35,7 @@
 typedef struct _xmlEntity xmlEntity;
 typedef xmlEntity *xmlEntityPtr;
 struct _xmlEntity {
-    void           *_private;	        /* for Corba, must be first ! */
+    void           *_private;	        /* application data */
     xmlElementType          type;       /* XML_ENTITY_DECL, must be second ! */
     const xmlChar          *name;	/* Attribute name */
     struct _xmlNode    *children;	/* NULL */
@@ -57,8 +57,8 @@
 };
 
 /*
- * ALl entities are stored in an hash table
- * there is 2 separate hash tables for global and parmeter entities
+ * All entities are stored in an hash table
+ * there is 2 separate hash tables for global and parameter entities
  */
 
 typedef struct _xmlHashTable xmlEntitiesTable;