diff --git a/src/http.ts b/src/http.ts index 7b56c4c..4e6f4fc 100644 --- a/src/http.ts +++ b/src/http.ts @@ -277,7 +277,7 @@ export class LemmyHttp { /** * Get data of current user. * - * `HTTP.GET /account/settings` + * `HTTP.GET /account/my_user` */ getMyUser(options?: RequestOptions) { return this.#wrapper( @@ -1436,12 +1436,12 @@ export class LemmyHttp { /** * Save your user settings. * - * `HTTP.PUT /account/settings` + * `HTTP.PUT /account/settings/save` */ saveUserSettings(form: SaveUserSettings, options?: RequestOptions) { return this.#wrapper( HttpType.Put, - "/account/settings", + "/account/settings/save", form, options, );