diff options
Diffstat (limited to 'gdata/gd/gdata-gd-email-address.c')
-rw-r--r-- | gdata/gd/gdata-gd-email-address.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdata/gd/gdata-gd-email-address.c b/gdata/gd/gdata-gd-email-address.c index 2255be48..d54b8897 100644 --- a/gdata/gd/gdata-gd-email-address.c +++ b/gdata/gd/gdata-gd-email-address.c @@ -323,11 +323,13 @@ gdata_gd_email_address_new (const gchar *address, const gchar *relation_type, co * @b: another #GDataGDEmailAddress, or %NULL * * Compares the two e-mail addresses in a strcmp() fashion. %NULL values are handled gracefully, with - * %0 returned if both @a and @b are %NULL, %-1 if @a is %NULL and %1 if @b is %NULL. + * <code class="literal">0</code> returned if both @a and @b are %NULL, <code class="literal">-1</code> if @a is %NULL + * and <code class="literal">1</code> if @b is %NULL. * * The comparison of non-%NULL values is done on the basis of the @address property of the #GDataGDEmailAddress<!-- -->es. * - * Return value: %0 if @a equals @b, %-1 or %1 as appropriate otherwise + * Return value: <code class="literal">0</code> if @a equals @b, <code class="literal">-1</code> or <code class="literal">1</code> as + * appropriate otherwise * * Since: 0.4.0 **/ |