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.
This commit is contained in:
Adam Richard 2019-01-24 18:09:15 -02:00 committed by Vincent Herbet
parent af56d964c1
commit 9417ec188d

View File

@ -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);