summaryrefslogtreecommitdiff
path: root/json_object.h
diff options
context:
space:
mode:
authorMichael Vetter <g.bluehut@gmail.com>2014-08-26 14:48:59 +0200
committerMichael Vetter <g.bluehut@gmail.com>2014-08-26 14:48:59 +0200
commitfcf5ad1bd66e62850238427a306dd020ee49b8b0 (patch)
tree293b09b12bc7e610c0b866df162394b80ebf72c3 /json_object.h
parentd4e81f9ec8273914739808737fa0a27a3f0589fb (diff)
Remove trailing whitespace
Diffstat (limited to 'json_object.h')
-rw-r--r--json_object.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/json_object.h b/json_object.h
index 200ac40..7986f9c 100644
--- a/json_object.h
+++ b/json_object.h
@@ -111,7 +111,7 @@ typedef enum json_type {
/* reference counting functions */
/**
- * Increment the reference count of json_object, thereby grabbing shared
+ * Increment the reference count of json_object, thereby grabbing shared
* ownership of obj.
*
* @param obj the json_object instance
@@ -178,7 +178,7 @@ flags);
* Set a custom serialization function to be used when this particular object
* is converted to a string by json_object_to_json_string.
*
- * If a custom serializer is already set on this object, any existing
+ * If a custom serializer is already set on this object, any existing
* user_delete function is called before the new one is set.
*
* If to_string_func is NULL, the other parameters are ignored
@@ -290,9 +290,9 @@ extern void json_object_object_add(struct json_object* obj, const char *key,
THIS_FUNCTION_IS_DEPRECATED(extern struct json_object* json_object_object_get(struct json_object* obj,
const char *key));
-/** Get the json_object associated with a given object field.
+/** Get the json_object associated with a given object field.
*
- * This returns true if the key is found, false in all other cases (including
+ * This returns true if the key is found, false in all other cases (including
* if obj isn't a json_type_object).
*
* *No* reference counts will be changed. There is no need to manually adjust
@@ -302,7 +302,7 @@ THIS_FUNCTION_IS_DEPRECATED(extern struct json_object* json_object_object_get(st
*
* @param obj the json_object instance
* @param key the object field name
- * @param value a pointer where to store a reference to the json_object
+ * @param value a pointer where to store a reference to the json_object
* associated with the given field name.
*
* It is safe to pass a NULL value.