diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2009-08-16 05:52:46 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2009-08-16 05:52:46 +0100 |
commit | d7d1e702b1d67fa1ec830a46650a02367ce1dd29 (patch) | |
tree | acf57eea22167ae1598154f27db71e119a747c67 /json-glib/json-object.c | |
parent | 9362ccc891c914dbcf1be6bd067b0b37ae688057 (diff) | |
download | json-glib-d7d1e702b1d67fa1ec830a46650a02367ce1dd29.tar.gz |
[docs] Remove note about normalization of member names
The normalization of member names inside JsonObject was removed by
commit 8a7e0f381dc7e49745680df92ebb428f18bf4832.
Diffstat (limited to 'json-glib/json-object.c')
-rw-r--r-- | json-glib/json-object.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/json-glib/json-object.c b/json-glib/json-object.c index d1bbe98..69f9d15 100644 --- a/json-glib/json-object.c +++ b/json-glib/json-object.c @@ -35,11 +35,7 @@ * * #JsonArray 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. Please note - * that the member names are normalized internally before being used; every - * delimiter matching the %G_STR_DELIMITER macro will be transformed into an - * underscore, so for instance "member-name" and "member_name" are equivalent - * for a #JsonObject. + * objects. Each member of an object is accessed using its 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(). |