Fix clear identifier typos

This commit is contained in:
Joseph Madamba
2021-12-09 21:04:31 -08:00
parent 55768d8c11
commit 98524d60a4
19 changed files with 45 additions and 45 deletions

View File

@ -7,8 +7,8 @@ namespace osu.Game.Online.API
{
public class APIException : InvalidOperationException
{
public APIException(string messsage, Exception innerException)
: base(messsage, innerException)
public APIException(string message, Exception innerException)
: base(message, innerException)
{
}
}

View File

@ -335,7 +335,7 @@ namespace osu.Game.Online.Chat
/// right now it caps out at 50 messages and therefore only returns one channel's worth of content.
/// </summary>
/// <param name="channel">The channel </param>
private void fetchInitalMessages(Channel channel)
private void fetchInitialMessages(Channel channel)
{
if (channel.Id <= 0 || channel.MessagesLoaded) return;
@ -441,7 +441,7 @@ namespace osu.Game.Online.Chat
else
{
if (fetchInitialMessages)
fetchInitalMessages(channel);
this.fetchInitialMessages(channel);
}
CurrentChannel.Value ??= channel;

View File

@ -170,7 +170,7 @@ namespace osu.Game.Online.Chat
[BackgroundDependencyLoader]
private void load(OsuColour colours, ChatOverlay chatOverlay, NotificationOverlay notificationOverlay, ChannelManager channelManager)
{
IconBackgound.Colour = colours.PurpleDark;
IconBackground.Colour = colours.PurpleDark;
Activated = delegate
{