summaryrefslogtreecommitdiff
path: root/json_tokener.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_tokener.h
parentd4e81f9ec8273914739808737fa0a27a3f0589fb (diff)
Remove trailing whitespace
Diffstat (limited to 'json_tokener.h')
-rw-r--r--json_tokener.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/json_tokener.h b/json_tokener.h
index a72d2bd..5a7a636 100644
--- a/json_tokener.h
+++ b/json_tokener.h
@@ -130,16 +130,16 @@ extern struct json_object* json_tokener_parse_verbose(const char *str, enum json
*/
extern void json_tokener_set_flags(struct json_tokener *tok, int flags);
-/**
+/**
* Parse a string and return a non-NULL json_object if a valid JSON value
* is found. The string does not need to be a JSON object or array;
* it can also be a string, number or boolean value.
*
* A partial JSON string can be parsed. If the parsing is incomplete,
- * NULL will be returned and json_tokener_get_error() will be return
+ * NULL will be returned and json_tokener_get_error() will be return
* json_tokener_continue.
* json_tokener_parse_ex() can then be called with additional bytes in str
- * to continue the parsing.
+ * to continue the parsing.
*
* If json_tokener_parse_ex() returns NULL and the error anything other than
* json_tokener_continue, a fatal error has occurred and parsing must be
@@ -152,7 +152,7 @@ extern void json_tokener_set_flags(struct json_tokener *tok, int flags);
* json_object_get_type() before using the object.
*
* @b XXX this shouldn't use internal fields:
- * Trailing characters after the parsed value do not automatically cause an
+ * Trailing characters after the parsed value do not automatically cause an
* error. It is up to the caller to decide whether to treat this as an
* error or to handle the additional characters, perhaps by parsing another
* json value starting from that point.