Skip to content

Commit 3e9bf9b

Browse files
committed
Fix typo
1 parent a6d7b0c commit 3e9bf9b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/Logging/Logger.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Oxide.Core.RemoteConsole;
1+
using Oxide.Core.RemoteConsole;
22
using System;
33
using System.Collections.Generic;
44

@@ -35,17 +35,17 @@ public struct LogMessage
3535
protected Queue<LogMessage> MessageQueue;
3636

3737
// Should messages be processed immediately and on the same thread?
38-
private bool processImediately;
38+
private bool processImmediately;
3939

4040
/// <summary>
4141
/// Initializes a new instance of the Logger class
4242
/// </summary>
43-
/// <param name="processImediately"></param>
44-
protected Logger(bool processImediately)
43+
/// <param name="processImmediately"></param>
44+
protected Logger(bool processImmediately)
4545
{
4646
// Initialize
47-
this.processImediately = processImediately;
48-
if (!processImediately)
47+
this.processImmediately = processImmediately;
48+
if (!processImmediately)
4949
{
5050
MessageQueue = new Queue<LogMessage>();
5151
}
@@ -149,7 +149,7 @@ public virtual void Write(LogType type, string format, params object[] args)
149149
internal virtual void Write(LogMessage message)
150150
{
151151
// If we're set to process immediately, do so, otherwise enqueue
152-
if (processImediately)
152+
if (processImmediately)
153153
{
154154
ProcessMessage(message);
155155
}

0 commit comments

Comments
 (0)