diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2014-03-06 13:58:15 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2014-03-18 16:27:59 +0000 |
commit | 20c861f02f8e41cde2dec92f9d63d8266383c26b (patch) | |
tree | b5a9fa61922cbc27cc0c94e52979d96df11a4a8d /json-glib/json-serializable.c | |
parent | ff018d7e560278d65a03c4de71c3cf11b22d3167 (diff) | |
download | json-glib-20c861f02f8e41cde2dec92f9d63d8266383c26b.tar.gz |
docs: Port to MarkDown
Drop the DocBook documentation, and move everything to the MarkDown
format used by modern gtk-doc.
Diffstat (limited to 'json-glib/json-serializable.c')
-rw-r--r-- | json-glib/json-serializable.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/json-glib/json-serializable.c b/json-glib/json-serializable.c index e49ccb1..5567b47 100644 --- a/json-glib/json-serializable.c +++ b/json-glib/json-serializable.c @@ -184,12 +184,14 @@ G_DEFINE_INTERFACE (JsonSerializable, json_serializable, G_TYPE_OBJECT); * @pspec: a #GParamSpec * * Calls the default implementation of the #JsonSerializable - * serialize_property() virtual function + * #JsonSerializableIface.serialize_property() virtual function. * * This function can be used inside a custom implementation - * of the serialize_property() virtual function in lieu of: + * of the #JsonSerializableIface.serialize_property() virtual + * function in lieu of calling the default implementation + * through g_type_default_interface_peek(): * - * |[ + * |[<!-- language="C" --> * JsonSerializable *iface; * JsonNode *node; * @@ -234,7 +236,7 @@ json_serializable_default_serialize_property (JsonSerializable *serializable, * This function can be used inside a custom implementation * of the deserialize_property() virtual function in lieu of: * - * |[ + * |[<!-- language="C" --> * JsonSerializable *iface; * gboolean res; * |