diff --git a/src/Discord.Net/DiscordClient.API.cs b/src/Discord.Net/DiscordClient.API.cs
index 923e64f35..ed75930af 100644
--- a/src/Discord.Net/DiscordClient.API.cs
+++ b/src/Discord.Net/DiscordClient.API.cs
@@ -299,15 +299,15 @@ namespace Discord
public Task EditMessage(string channelId, string messageId, string text)
=> EditMessage(channelId, messageId, text, new string[0]);
/// Edits a message the provided message, mentioning certain users.
- /// While not required, it is recommended to include a mention reference in the text (see User.Mention).
+ /// While not required, it is recommended to include a mention reference in the text (see Mention.User).
public Task EditMessage(Message message, string text, string[] mentions)
=> EditMessage(message?.ChannelId, message?.Id, text, mentions);
/// Edits a message the provided message, mentioning certain users.
- /// While not required, it is recommended to include a mention reference in the text (see User.Mention).
+ /// While not required, it is recommended to include a mention reference in the text (see Mention.User).
public Task EditMessage(Channel channel, string messageId, string text, string[] mentions)
=> EditMessage(channel?.Id, messageId, text, mentions);
/// Edits a message the provided message, mentioning certain users.
- /// While not required, it is recommended to include a mention reference in the text (see User.Mention).
+ /// While not required, it is recommended to include a mention reference in the text (see Mention.User).
public async Task EditMessage(string channelId, string messageId, string text, string[] mentions)
{
CheckReady();