From 4f4bdf249b67f311a829ce9dbf08a87a83463bcb Mon Sep 17 00:00:00 2001 From: Thijs Waalen Date: Sat, 6 Sep 2014 21:42:19 +0200 Subject: [PATCH] Fix wrong changes of possessive --- OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs | 2 +- OpenRA.Mods.RA/Scripting/Properties/PlayerProperties.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs b/OpenRA.Mods.RA/Scripting/Global/ActorGlobal.cs index 2db3964360..ccb8854a70 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 actors traits.")] + [Desc("Create a new actor. initTable specifies a list of key-value pairs that define initial parameters for the actor's traits.")] public Actor Create(string type, bool addToWorld, LuaTable initTable) { var initDict = new TypeDictionary(); diff --git a/OpenRA.Mods.RA/Scripting/Properties/PlayerProperties.cs b/OpenRA.Mods.RA/Scripting/Properties/PlayerProperties.cs index a72a93944a..ee1e52a064 100644 --- a/OpenRA.Mods.RA/Scripting/Properties/PlayerProperties.cs +++ b/OpenRA.Mods.RA/Scripting/Properties/PlayerProperties.cs @@ -22,7 +22,7 @@ namespace OpenRA.Mods.RA.Scripting public PlayerProperties(ScriptContext context, Player player) : base(context, player) { } - [Desc("The players name.")] + [Desc("The player's name.")] public string Name { get { return player.PlayerName; } } [Desc("Returns an array of actors representing all ground attack units of this player.")]