diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2016-03-01 15:02:19 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2016-03-01 15:02:19 +0000 |
commit | a43a9451b0cf9ebc03c651b5688f0fad56e3bacb (patch) | |
tree | bbf41c51ded534aac1d8d024ef4477f35db9f5d6 /json-glib/json-object.c | |
parent | 6ddbc94c9888e5ddcd1cbb15845d2f1b5524b3ed (diff) | |
download | json-glib-a43a9451b0cf9ebc03c651b5688f0fad56e3bacb.tar.gz |
docs: Fix the Since tags
The newly added API is available since 1.2.
Diffstat (limited to 'json-glib/json-object.c')
-rw-r--r-- | json-glib/json-object.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c index 5b1ec9e..4d89cd6 100644 --- a/json-glib/json-object.c +++ b/json-glib/json-object.c @@ -126,7 +126,7 @@ json_object_unref (JsonObject *object) * * If the @object is already immutable, this is a no-op. * - * Since: UNRELEASED + * Since: 1.2 */ void json_object_seal (JsonObject *object) @@ -157,7 +157,7 @@ json_object_seal (JsonObject *object) * Check whether the given @object has been marked as immutable by calling * json_object_seal() on it. * - * Since: UNRELEASED + * Since: 1.2 * Returns: %TRUE if the @object is immutable */ gboolean @@ -915,7 +915,7 @@ json_object_foreach_member (JsonObject *object, * proportionally with the number of members in the object. * * Returns: hash value for @key - * Since: UNRELEASED + * Since: 1.2 */ guint json_object_hash (gconstpointer key) @@ -950,7 +950,7 @@ json_object_hash (gconstpointer key) * set of members, and the values of corresponding members are equal. * * Returns: %TRUE if @a and @b are equal; %FALSE otherwise - * Since: UNRELEASED + * Since: 1.2 */ gboolean json_object_equal (gconstpointer a, @@ -1019,7 +1019,7 @@ json_object_equal (gconstpointer a, * } * ]| * - * Since: UNRELEASED + * Since: 1.2 */ void json_object_iter_init (JsonObjectIter *iter, @@ -1053,7 +1053,7 @@ json_object_iter_init (JsonObjectIter *iter, * Returns: %TRUE if @member_name and @member_node are valid; %FALSE if the end * of the object has been reached * - * Since: UNRELEASED + * Since: 1.2 */ gboolean json_object_iter_next (JsonObjectIter *iter, |