summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-02-02 11:39:31 +0100
committerBastien Nocera <hadess@hadess.net>2022-02-02 11:46:47 +0100
commit579242cfae0c2c1425d69626d9d0b17244dec792 (patch)
treed529db740d3534d61c6806b404c00d734320f359
parentd93280e01a923facccebf6042513ff66492705ca (diff)
downloadlibrest-579242cfae0c2c1425d69626d9d0b17244dec792.tar.gz
docs: Fix gtk-doc warning
../rest/rest-params.c:224: Warning: Rest: rest_params_as_string_hash_table: unknown parameter 'self' in documentation comment, should be 'params'
-rw-r--r--rest/rest-params.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest/rest-params.h b/rest/rest-params.h
index 9f53f77..74a3b37 100644
--- a/rest/rest-params.h
+++ b/rest/rest-params.h
@@ -59,7 +59,7 @@ RestParam *rest_params_get (RestParams *params,
void rest_params_remove (RestParams *params,
const char *name);
gboolean rest_params_are_strings (RestParams *params);
-GHashTable *rest_params_as_string_hash_table (RestParams *params);
+GHashTable *rest_params_as_string_hash_table (RestParams *self);
void rest_params_iter_init (RestParamsIter *iter,
RestParams *params);
gboolean rest_params_iter_next (RestParamsIter *iter,