diff --git a/src/api-client.lisp b/src/api-client.lisp index 87f7e15..35d0632 100644 --- a/src/api-client.lisp +++ b/src/api-client.lisp @@ -287,35 +287,35 @@ Returns nil if the user did not provided a server in the configuration file" announcements) (defun-api-call favourite-status (status-id) - "Favourite a status identified by `status-id'" + "Favourite a status identified by `status-id'" (tooter:favourite *client* status-id)) (defun-api-call unfavourite-status (status-id) - "Unfavourite a status identified by `status-id'" + "Unfavourite a status identified by `status-id'" (tooter:unfavourite *client* status-id)) (defun-api-call reblog-status (status-id) - "Reblog a status identified by `status-id'" + "Reblog a status identified by `status-id'" (tooter:reblog *client* status-id)) (defun-api-call unreblog-status (status-id) - "Reblog a status identified by `status-id'" + "Reblog a status identified by `status-id'" (tooter:unreblog *client* status-id)) (defun-api-call follow-tag (tag-name) - "Follow a tag" + "Follow a tag" (tooter:follow-tag *client* tag-name)) (defun-api-call unfollow-tag (tag-name) - "Unfollow a tag" + "Unfollow a tag" (tooter:unfollow-tag *client* tag-name)) (defun-api-call get-followed-tags (&key max-id since-id min-id (limit 20)) - "Unfollow a tag" + "get a list of tags object that the user follows" (tooter:collect-all-pages *client* (tooter:followed-tags *client* :max-id max-id