diff --git a/OpenRA.Mods.Common/UpdateRules/UpdateUtils.cs b/OpenRA.Mods.Common/UpdateRules/UpdateUtils.cs
index 95791a1bc1..3439e6f736 100644
--- a/OpenRA.Mods.Common/UpdateRules/UpdateUtils.cs
+++ b/OpenRA.Mods.Common/UpdateRules/UpdateUtils.cs
@@ -376,7 +376,7 @@ namespace OpenRA.Mods.Common.UpdateRules
return node.Value.Nodes.RemoveAll(n => n.KeyMatches(match, ignoreSuffix, includeRemovals));
}
- /// Returns true if the node is of the form or @arbitrary
+ /// Returns true if the node is of the form [match] or [match]@[arbitrary suffix]
public static bool KeyMatches(this MiniYamlNode node, string match, bool ignoreSuffix = true, bool includeRemovals = true)
{
if (node.Key == null)
@@ -394,7 +394,7 @@ namespace OpenRA.Mods.Common.UpdateRules
return atPosition > 0 && node.Key.Substring(0, atPosition) == prefix + match;
}
- /// Returns true if the node is of the form <*match*>, <*match*>@arbitrary or @*match*
+ /// Returns true if the node is of the form [match], [match]@[arbitrary suffix] or [arbitrary suffix]@[match]
public static bool KeyContains(this MiniYamlNode node, string match, bool ignoreSuffix = true, bool includeRemovals = true)
{
if (node.Key == null)
diff --git a/OpenRA.ruleset b/OpenRA.ruleset
index 95b02fe216..4fd5d88b5a 100644
--- a/OpenRA.ruleset
+++ b/OpenRA.ruleset
@@ -6,7 +6,6 @@
-