summaryrefslogtreecommitdiff
path: root/json-glib/json-object.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2014-03-06 13:58:15 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2014-03-18 16:27:59 +0000
commit20c861f02f8e41cde2dec92f9d63d8266383c26b (patch)
treeb5a9fa61922cbc27cc0c94e52979d96df11a4a8d /json-glib/json-object.c
parentff018d7e560278d65a03c4de71c3cf11b22d3167 (diff)
downloadjson-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-object.c')
-rw-r--r--json-glib/json-object.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c
index 95d2e86..d134421 100644
--- a/json-glib/json-object.c
+++ b/json-glib/json-object.c
@@ -35,9 +35,10 @@
* SECTION:json-object
* @short_description: a JSON object representation
*
- * #JsonObject is the representation of the object type inside JSON. It contains
- * #JsonNode<!-- -->s, which may contain fundamental types, arrays or other
- * objects. Each member of an object is accessed using its name.
+ * #JsonObject is the representation of the object type inside JSON. It
+ * contains #JsonNodes, which may contain fundamental types, arrays or other
+ * objects; each node inside an object, or "member", is accessed using a
+ * unique string, or "name".
*
* Since objects can be expensive, they are reference counted. You can control
* the lifetime of a #JsonObject using json_object_ref() and json_object_unref().
@@ -449,7 +450,7 @@ json_object_get_members (JsonObject *object)
* Retrieves all the values of the members of a #JsonObject.
*
* Return value: (element-type JsonNode) (transfer container): a #GList of
- * #JsonNode<!-- -->s. The content of the list is owned by the #JsonObject
+ * #JsonNodes. The content of the list is owned by the #JsonObject
* and should never be modified or freed. When you have finished using the
* returned list, use g_list_free() to free the resources it has allocated.
*/