- HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
  xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
- doc/html/* : rebuilt the docs
- valid.c: small patch which may improve some case when
  validating.
Daniel
diff --git a/include/libxml/xpath.h b/include/libxml/xpath.h
index 50f909d..cd04373 100644
--- a/include/libxml/xpath.h
+++ b/include/libxml/xpath.h
@@ -167,7 +167,9 @@
     xmlXPathAxisFunc func;		/* the search function */
 };
 
-/* 
+/**
+ * xmlXPathContext:
+ *
  * Expression evaluation occurs with respect to a context.
  * he context consists of:
  *    - a node (the context node) 
@@ -229,7 +231,9 @@
 typedef struct _xmlXPathCompExpr xmlXPathCompExpr;
 typedef xmlXPathCompExpr *xmlXPathCompExprPtr;
 
-/*
+/**
+ * xmlXPathParserContext:
+ *
  * An XPath parser context, it contains pure parsing informations,
  * an xmlXPathContext, and the stack of objects.
  */
@@ -249,7 +253,9 @@
     int xptr;				/* it this an XPointer expression */
 };
 
-/*
+/**
+ * xmlXPathFunction:
+ *
  * An XPath function
  * The arguments (if any) are popped out of the context stack
  * and the result is pushed on the stack.
@@ -288,7 +294,7 @@
  */
 int		   xmlXPathCastNumberToBoolean	(double val);
 int		   xmlXPathCastStringToBoolean	(const xmlChar * val);
-int		   xmlXPathCastNodeToBoolean	(xmlNodeSetPtr ns);
+int		   xmlXPathCastNodeSetToBoolean	(xmlNodeSetPtr ns);
 int		   xmlXPathCastToBoolean	(xmlXPathObjectPtr val);
 
 double		   xmlXPathCastBooleanToNumber	(int val);