diff --git a/src/Discord.Net/DiscordClient.Users.cs b/src/Discord.Net/DiscordClient.Users.cs index 14f8b7921..47fe978ae 100644 --- a/src/Discord.Net/DiscordClient.Users.cs +++ b/src/Discord.Net/DiscordClient.Users.cs @@ -147,7 +147,6 @@ namespace Discord return _users[userId, server.Id]; } /// Returns the user with the specified name and discriminator, along withtheir server-specific data, or null if they couldn't be found. - /// Name formats supported: Name and @Name. Search is case-insensitive. public User GetUser(Server server, string username, short discriminator) { if (server == null) throw new ArgumentNullException(nameof(server)); @@ -159,7 +158,7 @@ namespace Discord } /// Returns all users with the specified server and name, along with their server-specific data. - /// Name formats supported: Name and @Name. Search is case-insensitive. + /// Name formats supported: Name, @Name and <@Id>. Search is case-insensitive. public IEnumerable FindUsers(Server server, string name, short? discriminator = null, bool exactMatch = false) { if (server == null) throw new ArgumentNullException(nameof(server)); @@ -169,7 +168,7 @@ namespace Discord return FindUsers(server.Members, server.Id, name, discriminator, exactMatch); } /// Returns all users with the specified channel and name, along with their server-specific data. - /// Name formats supported: Name and @Name. Search is case-insensitive. + /// Name formats supported: Name, @Name and <@Id>. Search is case-insensitive. public IEnumerable FindUsers(Channel channel, string name, short? discriminator = null, bool exactMatch = false) { if (channel == null) throw new ArgumentNullException(nameof(channel));