aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/mastodon-http.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index d9e1d80..e67cf2d 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -125,7 +125,8 @@ Unless UNAUTHENTICATED-P is non-nil."
"&"))
(defun mastodon-http--build-array-args-alist (param-str array)
- "Return parameters alist using PARAM-STR and ARRAY param values."
+ "Return parameters alist using PARAM-STR and ARRAY param values.
+Used for API form data parameters that take an array."
(cl-loop for x in array
collect (cons param-str x)))