Skip to content

Commit

Permalink
fix(http): Fix mismerge of main
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Reidel <[email protected]>
  • Loading branch information
Gelbpunkt committed Sep 10, 2023
1 parent 89dee72 commit 15dba4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion twilight-http/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ impl Client {
/// let members = client
/// .guild_members(guild_id)
/// .after(user_id)
/// .limit(500)?
/// .limit(500)
/// .await?;
/// # Ok(()) }
/// ```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct GetGuildMembersFields {
/// let members = client
/// .guild_members(guild_id)
/// .after(user_id)
/// .limit(500)?
/// .limit(500)
/// .await?;
/// # Ok(()) }
/// ```
Expand Down

0 comments on commit 15dba4e

Please sign in to comment.