Spelling fixes

This commit is contained in:
RoosterDragon
2023-03-02 17:06:48 +00:00
committed by Pavel Penev
parent 52fd564eac
commit 53e9f44972
12 changed files with 13 additions and 13 deletions

View File

@@ -43,7 +43,7 @@ namespace OpenRA
readonly List<MapDirectoryTracker> mapDirectoryTrackers = new List<MapDirectoryTracker>();
/// <summary>
/// The most recenly modified or loaded map at runtime
/// The most recently modified or loaded map at runtime
/// </summary>
public string LastModifiedMap { get; private set; } = null;
readonly Dictionary<string, string> mapUpdates = new Dictionary<string, string>();

View File

@@ -114,7 +114,7 @@ namespace OpenRA.Scripting
{
var pi = (PropertyInfo)Member;
if (!value.TryGetClrValue(pi.PropertyType, out var clrValue))
throw new LuaException($"Unable to convert '{value.WrappedClrType().Name}' to Clr type '{pi.PropertyType}'");
throw new LuaException($"Unable to convert '{value.WrappedClrType().Name}' to CLR type '{pi.PropertyType}'");
pi.SetValue(Target, clrValue, null);
}

View File

@@ -105,7 +105,7 @@ namespace OpenRA
[Desc("Delay in milliseconds before newly joined players can send chat messages.")]
public int FloodLimitJoinCooldown = 5000;
[Desc("Amount of miliseconds player chat messages are tracked for.")]
[Desc("Amount of milliseconds player chat messages are tracked for.")]
public int FloodLimitInterval = 5000;
[Desc("Amount of chat messages per FloodLimitInterval a players can send before flood is detected.")]

View File

@@ -25,7 +25,7 @@ namespace OpenRA
readonly int x, y, z, w;
/// <summary>
/// Construct a rotation from euler angles.
/// Construct a rotation from Euler angles.
/// </summary>
public WRot(WAngle roll, WAngle pitch, WAngle yaw)
{