summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorGravatar damitha2010-06-24 17:00:09 +0000
committerGravatar damitha2010-06-24 17:00:09 +0000
commit5d895f579de1204617cfd8d22f3e0485ba87e07c (patch)
treebc0c34ae4672e4a3ec777a48033243689c7b6a8b /util
parent6250e3cbdf17c56391290496bb8c6dd6ea587550 (diff)
downloadaxis2c-5d895f579de1204617cfd8d22f3e0485ba87e07c.tar.gz
axis2c-5d895f579de1204617cfd8d22f3e0485ba87e07c.tar.bz2
Fix doxygen errors
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@957628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'util')
-rw-r--r--util/include/axutil_qname.h2
-rw-r--r--util/include/axutil_utils.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/util/include/axutil_qname.h b/util/include/axutil_qname.h
index da78461..90b1b0d 100644
--- a/util/include/axutil_qname.h
+++ b/util/include/axutil_qname.h
@@ -50,7 +50,7 @@ extern "C"
* @ns_uri optional
* The prefix. Must not be null. Use "" (empty string) to indicate that no
* namespace URI is present or the namespace URI is not relevant
- * if null is passed for prefix and uri , "'(empty string ) will be assinged to
+ * if null is passed for prefix and uri , ""(empty string ) will be assinged to
* those fields
* @return a pointer to newly created qname struct
*/
diff --git a/util/include/axutil_utils.h b/util/include/axutil_utils.h
index 1cef523..cb0af8e 100644
--- a/util/include/axutil_utils.h
+++ b/util/include/axutil_utils.h
@@ -226,10 +226,10 @@ extern "C"
/**
* Quotes an XML string.
* Replace '<', '>', and '&' with '&lt;', '&gt;', and '&amp;'.
- * If quotes is true, then replace '"' with '&quot;'.
+ * If quotes is true, then replace double quote with '&quot;'.
* @param env pointer to environment struct
* @param s string to be quoted
- * @param quotes if AXIS2_TRUE then replace '"' with '&quot;'.
+ * @param quotes if AXIS2_TRUE then replace double quote with '&quot;'.
* quotes is typically set to true for XML strings that will occur within
* double quotes -- attribute values.
* @return Encoded string if there are characters to be encoded, else NULL.