docs: Fix typo in the GObject tutorial

The description of the instance construction does not match the example.
This commit is contained in:
Emmanuele Bassi 2017-11-25 10:24:07 +00:00
parent b97e5cb21b
commit bc277bfcef

View File

@ -105,9 +105,9 @@ ViewerFile *file = g_object_new (VIEWER_TYPE_FILE, NULL);
This will make sure the class structure of this new object is This will make sure the class structure of this new object is
correctly initialized. Here, <function>viewer_file_class_init</function> correctly initialized. Here, <function>viewer_file_class_init</function>
is expected to override the object's class methods and setup the is expected to override the object's class methods and setup the
class' own methods. In the example above, the constructor method is class' own methods. In the example above, the <literal>constructed</literal>
the only overridden method: it is set to method is the only overridden method: it is set to
<function>viewer_file_constructor</function>. <function>viewer_file_constructed</function>.
</para> </para>
<para> <para>