From 3a80ee27cdcc97982c4efd8d60863386edc7e75c Mon Sep 17 00:00:00 2001 From: Thijs Waalen Date: Sat, 6 Sep 2014 21:56:33 +0200 Subject: [PATCH] Fix spelling for Actor.Create description --- OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs b/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs index ccb8854a70..c7c3ba6554 100644 --- a/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs +++ b/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs @@ -21,7 +21,7 @@ namespace OpenRA.Scripting { public ActorGlobal(ScriptContext context) : base(context) { } - [Desc("Create a new actor. initTable specifies a list of key-value pairs that define initial parameters for the actor's traits.")] + [Desc("Create a new actor. initTable specifies a list of key-value pairs that defines the initial parameters for the actor's traits.")] public Actor Create(string type, bool addToWorld, LuaTable initTable) { var initDict = new TypeDictionary();