Minor style edit

This commit is contained in:
RogueException
2015-12-08 09:37:05 -04:00
parent 3fe7124f4d
commit f8b6105226

View File

@@ -175,7 +175,7 @@ namespace Discord
if (name == null) throw new ArgumentNullException(nameof(name));
CheckReady();
return FindUsers(channel.Members, channel.IsPrivate ? (long?)null : channel.Server.Id, name, null, exactMatch);
return FindUsers(channel.Members, channel.IsPrivate ? (long?)null : channel.Server.Id, name, exactMatch: exactMatch);
}
private IEnumerable<User> FindUsers(IEnumerable<User> users, long? serverId, string name, short? discriminator = null, bool exactMatch = false)