summaryrefslogtreecommitdiff
path: root/libpurple/util.h
diff options
context:
space:
mode:
authorAnkit Vani <a@nevitus.org>2014-02-06 16:46:43 +0530
committerAnkit Vani <a@nevitus.org>2014-02-06 16:46:43 +0530
commitb0fb09a17791ce285967d64c017874866ee439b4 (patch)
tree2034bfe4377afa5c3361ec1fcd250c53535dce5e /libpurple/util.h
parenteed0c69d4e4ebfc602e7eb2dca7635cd9d56d1b3 (diff)
downloadpidgin-b0fb09a17791ce285967d64c017874866ee439b4.tar.gz
Fix HTML generation warnings by using DocBook tags
Diffstat (limited to 'libpurple/util.h')
-rw-r--r--libpurple/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpurple/util.h b/libpurple/util.h
index fc2ee5201d..7e58af1bc0 100644
--- a/libpurple/util.h
+++ b/libpurple/util.h
@@ -649,8 +649,8 @@ char *purple_markup_strip_html(const char *str);
* Adds the necessary HTML code to turn URIs into HTML links in a string.
*
* Returns: The new string with all URIs surrounded in standard
- * HTML <a href="whatever"></a> tags. You must g_free this
- * string when finished with it.
+ * HTML &lt;a href="whatever"&gt;&lt;/a&gt; tags. You must g_free()
+ * this string when finished with it.
*/
char *purple_markup_linkify(const char *str);
@@ -1039,7 +1039,7 @@ gboolean purple_strequal(const gchar *left, const gchar *right);
* Normalizes a string, so that it is suitable for comparison.
*
* The returned string will point to a static buffer, so if the
- * string is intended to be kept long-term, you <i>must</i>
+ * string is intended to be kept long-term, you <emphasis>must</emphasis>
* g_strdup() it. Also, calling normalize() twice in the same line
* will lead to problems.
*