fix xmlURIUnescapeString comments which was confusing Daniel

* uri.c: fix xmlURIUnescapeString comments which was confusing
Daniel

svn path=/trunk/; revision=3603
diff --git a/ChangeLog b/ChangeLog
index 79d5b28..6874d1c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Apr 24 10:59:28 CEST 2007 Daniel Veillard <daniel@veillard.com>
+
+	* uri.c: fix xmlURIUnescapeString comments which was confusing
+
 Wed Apr 18 09:52:25 CEST 2007 Daniel Veillard <daniel@veillard.com>
 
 	* include/win32config.h libxml.h: new patch from Andreas Stricke to
diff --git a/uri.c b/uri.c
index 35cf98a..23af913 100644
--- a/uri.c
+++ b/uri.c
@@ -805,10 +805,10 @@
  * @len:   the length in bytes to unescape (or <= 0 to indicate full string)
  * @target:  optional destination buffer
  *
- * Unescaping routine, does not do validity checks !
- * Output is direct unsigned char translation of %XX values (no encoding)
+ * Unescaping routine, but does not check that the string is an URI. The
+ * output is a direct unsigned char translation of %XX values (no encoding)
  *
- * Returns an copy of the string, but unescaped
+ * Returns a copy of the string, but unescaped
  */
 char *
 xmlURIUnescapeString(const char *str, int len, char *target) {