Fix jsdoc comment for listCommentLikes (#231)

* Fix jsdoc comment for listCommentLikes

* Fix another jsdoc comment
This commit is contained in:
Maarten Vercruysse 2024-01-23 02:13:57 +01:00 committed by GitHub
parent fcee76937b
commit c01fc0c017
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -622,7 +622,7 @@ export class LemmyHttp {
/**
* List a post's likes. Admin-only.
*
* `HTTP.GET /post/like`
* `HTTP.GET /post/like/list`
*/
listPostLikes(form: ListPostLikes) {
return this.#wrapper<ListPostLikes, ListPostLikesResponse>(
@ -778,7 +778,7 @@ export class LemmyHttp {
/**
* List a comment's likes. Admin-only.
*
* `HTTP.GET //like`
* `HTTP.GET /comment/like/list`
*/
listCommentLikes(form: ListCommentLikes) {
return this.#wrapper<ListCommentLikes, ListCommentLikesResponse>(