Fix a doc comment

It was missing a return.
This commit is contained in:
Matthias Clasen 2017-09-29 23:29:33 -04:00
parent e9dedc5036
commit 52afccb6a3

View File

@ -4003,7 +4003,7 @@ gsk_text_node_deserialize (GVariant *variant,
}
g_variant_iter_free (iter);
result = gsk_text_node_new (font, glyphs, &color, x, y); /* FIXME: Avoid copying glyphs */
result = gsk_text_node_new (font, glyphs, &color, x, y);
pango_glyph_string_free (glyphs);
pango_font_description_free (desc);
@ -4035,6 +4035,8 @@ static const GskRenderNodeClass GSK_TEXT_NODE_CLASS = {
* Note that @color may not be used if the font contains
* color glyphs.
*
* Returns: a new text node, or %NULL
*
* Since: 3.92
*/
GskRenderNode *