diff --git a/src/http.ts b/src/http.ts index f2cb095..a7464ca 100644 --- a/src/http.ts +++ b/src/http.ts @@ -279,12 +279,12 @@ export class LemmyHttp { /** * Get data of current user. * - * `HTTP.GET /account/my_user` + * `HTTP.GET /account` */ getMyUser(options?: RequestOptions) { return this.#wrapper( HttpType.Get, - "/account/my_user", + "/account", {}, options, );