From 7cd259d2b8628bdb182ae52f3b394ef14637392b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Fri, 27 Jun 2014 17:42:15 +0200 Subject: [PATCH] add a missing space for multi line property documentation --- OpenRA.Utility/Command.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index db0837a582..907471c3e9 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -334,7 +334,7 @@ namespace OpenRA.Utility doc.Append("{0}{1}{2}".F(f.Name, defaultValue, fieldType)); doc.Append(""); foreach (var line in fieldDescLines) - doc.Append(line); + doc.Append(line + " "); doc.AppendLine(""); } doc.AppendLine("");