From 5a1931951ff63ed3843048076bcb74fc753a12f7 Mon Sep 17 00:00:00 2001 From: kozabrada123 <59031733+kozabrada123@users.noreply.github.com> Date: Sun, 25 Feb 2024 09:54:06 +0100 Subject: [PATCH] Fix broken luna.gitlab.io links (#480) docs: fix broken luna.gitlab.io links --- src/api/users/relationships.rs | 8 ++++---- src/api/users/users.rs | 2 +- src/types/events/lazy_request.rs | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/api/users/relationships.rs b/src/api/users/relationships.rs index 3d68603..c77db44 100644 --- a/src/api/users/relationships.rs +++ b/src/api/users/relationships.rs @@ -19,7 +19,7 @@ impl ChorusUser { /// Retrieves a list of mutual friends between the authenticated user and a given user. /// /// # Reference - /// See + /// See pub async fn get_mutual_relationships( &mut self, user_id: Snowflake, @@ -41,7 +41,7 @@ impl ChorusUser { /// Retrieves the user's relationships. /// /// # Reference - /// See + /// See pub async fn get_relationships(&mut self) -> ChorusResult> { let url = format!( "{}/users/@me/relationships", @@ -59,7 +59,7 @@ impl ChorusUser { /// Sends a friend request to a user. /// /// # Reference - /// See + /// See pub async fn send_friend_request( &mut self, schema: FriendRequestSendSchema, @@ -136,7 +136,7 @@ impl ChorusUser { /// Removes the relationship between the authenticated user and a given user. /// /// # Reference - /// See + /// See pub async fn remove_relationship(&mut self, user_id: Snowflake) -> ChorusResult<()> { let url = format!( "{}/users/@me/relationships/{}", diff --git a/src/api/users/users.rs b/src/api/users/users.rs index f7b0f3b..b80bc1e 100644 --- a/src/api/users/users.rs +++ b/src/api/users/users.rs @@ -117,7 +117,7 @@ impl User { /// Gets the user's settings. /// /// # Reference - /// See + /// See pub async fn get_settings( token: &String, url_api: &String, diff --git a/src/types/events/lazy_request.rs b/src/types/events/lazy_request.rs index fbea772..0c80c13 100644 --- a/src/types/events/lazy_request.rs +++ b/src/types/events/lazy_request.rs @@ -17,7 +17,7 @@ use super::WebSocketEvent; /// Sent by the official client when switching to a guild or channel; /// After this, you should receive message updates /// -/// See +/// See /// /// {"op":14,"d":{"guild_id":"848582562217590824","typing":true,"activities":true,"threads":true}} pub struct LazyRequest {