diff options
| author | Emmanuele Bassi <ebassi@linux.intel.com> | 2009-11-28 19:13:27 +0000 |
|---|---|---|
| committer | Emmanuele Bassi <ebassi@linux.intel.com> | 2009-11-28 19:13:27 +0000 |
| commit | 4445bdb04d5eebc145a1db82aa5b811e8d4ed048 (patch) | |
| tree | 3da13b5ea30266a2db2d52383e72f7bdddac96e6 | |
| parent | 793e827feaa9be3c4ffbe5c0425ac6bcc0c9e6d1 (diff) | |
| download | json-glib-4445bdb04d5eebc145a1db82aa5b811e8d4ed048.tar.gz | |
docs: Fix argument name mismatch
gtk-doc complains that the argument name in the header does not match
the one in the documentation annotation for the GBoxed deserialization
function registration.
| -rw-r--r-- | json-glib/json-gobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json-glib/json-gobject.h b/json-glib/json-gobject.h index 0fde684..9eb6ac9 100644 --- a/json-glib/json-gobject.h +++ b/json-glib/json-gobject.h @@ -118,7 +118,7 @@ void json_boxed_register_serialize_func (GType gboxed_ JsonBoxedSerializeFunc serialize_func); void json_boxed_register_deserialize_func (GType gboxed_type, JsonNodeType node_type, - JsonBoxedDeserializeFunc serialize_func); + JsonBoxedDeserializeFunc deserialize_func); gboolean json_boxed_can_serialize (GType gboxed_type, JsonNodeType *node_type); gboolean json_boxed_can_deserialize (GType gboxed_type, |
