diff options
author | Alberto Ruiz <aruiz@gnome.org> | 2015-12-28 21:15:49 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-03-18 18:58:40 +0000 |
commit | abf36db8113aba96b3be2d11eaffcb51e5ccccb7 (patch) | |
tree | 2e3191ce687d75a237fdf5e3760b535b851bc236 /json-glib/json-gboxed.c | |
parent | c015ec56fe8cc1908ce39dc781edfd2560655c15 (diff) | |
download | json-glib-abf36db8113aba96b3be2d11eaffcb51e5ccccb7.tar.gz |
introspection: fix nullable annotation for return values in the following methods
json_builder_add_boolean_value
json_builder_add_double_value
json_builder_add_int_value
json_builder_add_null_value
json_builder_add_string_value
json_builder_add_value
json_builder_begin_array
json_builder_begin_object
json_builder_end_array
json_builder_end_object
json_builder_get_root
json_builder_set_member_name
json_generator_get_root
json_reader_get_error
json_reader_get_member_name
json_reader_get_value
json_serializable_find_property
json_serializable_find_property
json_boxed_serialize
Diffstat (limited to 'json-glib/json-gboxed.c')
-rw-r--r-- | json-glib/json-gboxed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/json-glib/json-gboxed.c b/json-glib/json-gboxed.c index ef53af1..f274e6d 100644 --- a/json-glib/json-gboxed.c +++ b/json-glib/json-gboxed.c @@ -296,8 +296,8 @@ json_boxed_can_deserialize (GType gboxed_type, * Serializes @boxed, a pointer to a #GBoxed of type @gboxed_type, * into a #JsonNode * - * Return value: (transfer full): a #JsonNode with the serialization of the - * boxed type, or %NULL if serialization either failed or was not possible + * Return value: (nullable) (transfer full): a #JsonNode with the serialization of + * the boxed type, or %NULL if serialization either failed or was not possible * * Since: 0.10 */ |