From: andy5995 Date: Wed, 24 Jul 2019 04:53:06 +0000 (-0500) Subject: json_pointer.h:suggest minor grammar improvement for pointer doc X-Git-Tag: json-c-0.14-20200419~95^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F496%2Fhead;p=thirdparty%2Fjson-c.git json_pointer.h:suggest minor grammar improvement for pointer doc --- diff --git a/json_pointer.h b/json_pointer.h index b8746c0c..daad9773 100644 --- a/json_pointer.h +++ b/json_pointer.h @@ -39,7 +39,7 @@ extern "C" { * * @param obj the json_object instance/tree from where to retrieve sub-objects * @param path a (RFC6901) string notation for the sub-object to retrieve - * @param res a pointer where to store a reference to the json_object + * @param res a pointer that stores a reference to the json_object * associated with the given path * * @return negative if an error (or not found), or 0 if succeeded @@ -56,7 +56,7 @@ int json_pointer_get(struct json_object *obj, const char *path, struct json_obje * aspects when using this function. * * @param obj the json_object instance/tree to which to add a sub-object - * @param res a pointer where to store a reference to the json_object + * @param res a pointer that stores a reference to the json_object * associated with the given path * @param path_fmt a printf() style format for the path *