diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2009-06-25 10:37:43 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2009-06-25 10:37:43 +0100 |
commit | 9a3b7a020716e23f1330915f1768a7c00bffbeb5 (patch) | |
tree | e7b337e4df3ac6ce865e3405fdfde121f6ae3f8d /json-glib | |
parent | 68d872f15022217c0ff1cf516aec917d600fd762 (diff) | |
download | json-glib-9a3b7a020716e23f1330915f1768a7c00bffbeb5.tar.gz |
[docs] Fix typo in JsonObject::set_object_member()
The passed value is a pointer to a JsonObject, not to a JsonArray.
Diffstat (limited to 'json-glib')
-rw-r--r-- | json-glib/json-object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c index 986277c..7f329cf 100644 --- a/json-glib/json-object.c +++ b/json-glib/json-object.c @@ -383,7 +383,7 @@ json_object_set_array_member (JsonObject *object, * Convenience function for setting an object @value of * @member_name inside @object. * - * The @object will take ownership of the passed #JsonArray + * The @object will take ownership of the passed #JsonObject * * See also: json_object_set_member() * |