From 1f0dc3387534f6d0eaaf2749dd5996054c68b294 Mon Sep 17 00:00:00 2001 From: Vincent Herbet Date: Sun, 16 Sep 2018 20:03:39 +0200 Subject: [PATCH] Fix typo in json_object_get_value_at documentation (#587) --- plugins/include/json.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/include/json.inc b/plugins/include/json.inc index 687421b6..b26c7b26 100644 --- a/plugins/include/json.inc +++ b/plugins/include/json.inc @@ -594,10 +594,8 @@ native json_object_get_name(const JSON:object, index, buffer[], maxlen); * * @param object Object handle * @param index Position from which get key name - * @param buffer Buffer to copy string to - * @param maxlen Maximum size of the buffer * - * @return The number of cells written to the buffer + * @return JSON handle, Invalid_JSON if error occurred * @error If passed handle is not a valid object */ native JSON:json_object_get_value_at(const JSON:object, index);