From 9417ec188de4c3ccb4c59dad9aa83801cb9bf979 Mon Sep 17 00:00:00 2001 From: Adam Richard <39578558+AdamRichard21st@users.noreply.github.com> Date: Thu, 24 Jan 2019 18:09:15 -0200 Subject: [PATCH] Fix typo in json_parse documentation (#663) Just a small fix on json_parse return description. I'm sure it was supposed to be `Invalid_JSON` instead of `Invalid_JSONValue`. Thank you, guys, that's one of my favorites features. --- plugins/include/json.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/json.inc b/plugins/include/json.inc index b26c7b26..61f608db 100644 --- a/plugins/include/json.inc +++ b/plugins/include/json.inc @@ -64,7 +64,7 @@ enum JSON * @param is_file True to treat string param as filename, false otherwise * @param with_comments True if parsing JSON includes comments (it will ignore them), false otherwise * - * @return JSON handle, Invalid_JSONValue if error occurred + * @return JSON handle, Invalid_JSON if error occurred */ native JSON:json_parse(const string[], bool:is_file = false, bool:with_comments = false);