diff options
Diffstat (limited to 'gdata/gd/gdata-gd-name.c')
-rw-r--r-- | gdata/gd/gdata-gd-name.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdata/gd/gdata-gd-name.c b/gdata/gd/gdata-gd-name.c index 57cc5fb7..e32a5b28 100644 --- a/gdata/gd/gdata-gd-name.c +++ b/gdata/gd/gdata-gd-name.c @@ -341,12 +341,14 @@ gdata_gd_name_new (const gchar *given_name, const gchar *family_name) * @b: another #GDataGDName, or %NULL * * Compares the two names 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 @given_name, @additional_name and @family_name properties of the * #GDataGDName<!-- -->s. * - * 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.5.0 **/ |