diff options
Diffstat (limited to 'pango')
-rw-r--r-- | pango/pango-context.c | 4 | ||||
-rw-r--r-- | pango/pango-fontmap.c | 4 | ||||
-rw-r--r-- | pango/pango-utils.c | 4 | ||||
-rw-r--r-- | pango/pangofc-fontmap.h | 4 | ||||
-rw-r--r-- | pango/pangox.c | 2 | ||||
-rw-r--r-- | pango/reorder-items.c | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/pango/pango-context.c b/pango/pango-context.c index 1da56fd2..1a6daa22 100644 --- a/pango/pango-context.c +++ b/pango/pango-context.c @@ -280,7 +280,7 @@ pango_context_list_families (PangoContext *context, * Loads the font in one of the fontmaps in the context * that is the closest match for @desc. * - * Returns the font loaded, or %NULL if no font matched. + * Returns: the font loaded, or %NULL if no font matched. **/ PangoFont * pango_context_load_font (PangoContext *context, @@ -301,7 +301,7 @@ pango_context_load_font (PangoContext *context, * Load a set of fonts in the context that can be used to render * a font matching @desc. * - * Returns the fontset, or %NULL if no font matched. + * Returns: the fontset, or %NULL if no font matched. **/ PangoFontset * pango_context_load_fontset (PangoContext *context, diff --git a/pango/pango-fontmap.c b/pango/pango-fontmap.c index c56ffe5d..92066603 100644 --- a/pango/pango-fontmap.c +++ b/pango/pango-fontmap.c @@ -51,7 +51,7 @@ pango_font_map_init (PangoFontMap *fontmap) * * Load the font in the fontmap that is the closest match for @desc. * - * Returns the font loaded, or %NULL if no font matched. + * Returns: the font loaded, or %NULL if no font matched. **/ PangoFont * pango_font_map_load_font (PangoFontMap *fontmap, @@ -93,7 +93,7 @@ pango_font_map_list_families (PangoFontMap *fontmap, * Load a set of fonts in the fontmap that can be used to render * a font matching @desc. * - * Returns the fontset, or %NULL if no font matched. + * Returns: the fontset, or %NULL if no font matched. **/ PangoFontset * pango_font_map_load_fontset (PangoFontMap *fontmap, diff --git a/pango/pango-utils.c b/pango/pango-utils.c index 580a4d3f..d2e49924 100644 --- a/pango/pango-utils.c +++ b/pango/pango-utils.c @@ -69,7 +69,7 @@ static GHashTable *pango_aliases_ht = NULL; * A version number can be encoded into an integer using * PANGO_VERSION_ENCODE(). * - * Returns value: The encoded version of Pango library + * Returns: The encoded version of Pango library * available at run time. * * Since: 1.16 @@ -87,7 +87,7 @@ pango_version (void) * it returns the version of Pango available at run-time, as opposed to * the version available at compile-time. * - * Returns value: A string containing the version of Pango library + * Returns: A string containing the version of Pango library * available at run time. * The returned string is owned by Pango and should not be modified * or freed. diff --git a/pango/pangofc-fontmap.h b/pango/pangofc-fontmap.h index 2a5443f0..69a56ade 100644 --- a/pango/pangofc-fontmap.h +++ b/pango/pangofc-fontmap.h @@ -191,8 +191,8 @@ PangoFontDescription *pango_fc_font_description_from_pattern (FcPattern *pattern * String representing a fontconfig property name that Pango sets on any * fontconfig pattern it passes to fontconfig. * - * The property will have an integer value equal to what pango_version() - * returns. + * The property will have an integer value equal to what + * pango_version() returns. * * Since: 1.20 */ diff --git a/pango/pangox.c b/pango/pangox.c index bf2f12cd..218cf5ab 100644 --- a/pango/pangox.c +++ b/pango/pangox.c @@ -323,7 +323,7 @@ pango_x_font_new (PangoFontMap *fontmap, const char *spec, int size) * work correctly in all circumstances. Use of this function should * be avoided. * - * Returns a new #PangoFont. + * Returns: a new #PangoFont. */ PangoFont * pango_x_load_font (Display *display, diff --git a/pango/reorder-items.c b/pango/reorder-items.c index 23ba5836..126d310d 100644 --- a/pango/reorder-items.c +++ b/pango/reorder-items.c @@ -37,7 +37,7 @@ static GList *reorder_items_recurse (GList *items, int n_items); * directional levels, produce a list in visual order. * The original list is unmodified. * - * Returns a #GList of #PangoItem structures in visual order. + * Returns: a #GList of #PangoItem structures in visual order. * * (Please open a bug if you use this function. * It is not a particularly convenient interface, and the code |