Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Jul 20, 2024
1 parent fb7a8f6 commit 15be9c9
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions twilight-http/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2773,7 +2773,9 @@ impl Client {
///
/// let application_id = Id::new(1);
///
/// client.add_application_emoji(application_id, "emoji name", "emoji image").await?;
/// client
/// .add_application_emoji(application_id, "emoji name", "emoji image")
/// .await?;
///
/// # Ok(()) }
/// ```
Expand Down Expand Up @@ -2801,7 +2803,9 @@ impl Client {
/// let application_id = Id::new(1);
/// let emoji_id = Id::new(2);
///
/// client.update_application_emoji(application_id, emoji_id, "new emoji name").await?;
/// client
/// .update_application_emoji(application_id, emoji_id, "new emoji name")
/// .await?;
///
/// # Ok(()) }
/// ```
Expand Down Expand Up @@ -2829,7 +2833,9 @@ impl Client {
/// let application_id = Id::new(1);
/// let emoji_id = Id::new(2);
///
/// client.delete_application_emoji(application_id, emoji_id).await?;
/// client
/// .delete_application_emoji(application_id, emoji_id)
/// .await?;
///
/// # Ok(()) }
/// ```
Expand Down

0 comments on commit 15be9c9

Please sign in to comment.