Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Morris <caleb.morris.g@gmail.com>2015-11-11 18:43:32 +0300
committerCaleb Morris <caleb.morris.g@gmail.com>2015-11-11 18:43:32 +0300
commitad0ab1593cdf2bfce8204a0f3b90e711ac479c5c (patch)
tree78781f17d48f81590573fdc6bc6f631b8aa927f7
parentf20c7a151c26c600346c9ded92d6fb7d8ac68247 (diff)
Fixed rule description typo.
-rw-r--r--gendarme/rules/Gendarme.Rules.Performance/AvoidConcatenatingCharsRule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/gendarme/rules/Gendarme.Rules.Performance/AvoidConcatenatingCharsRule.cs b/gendarme/rules/Gendarme.Rules.Performance/AvoidConcatenatingCharsRule.cs
index 44ba1e6b..ab6074e1 100644
--- a/gendarme/rules/Gendarme.Rules.Performance/AvoidConcatenatingCharsRule.cs
+++ b/gendarme/rules/Gendarme.Rules.Performance/AvoidConcatenatingCharsRule.cs
@@ -70,7 +70,7 @@ namespace Gendarme.Rules.Performance {
/// </code>
/// </example>
/// <remarks>This rule is available since Gendarme 2.8</remarks>
- [Problem ("Unneeded boxing was found for concatening a string.")]
+ [Problem ("Unneeded boxing was found for concatenating a string.")]
[Solution ("Change your code to avoid the boxing when creating your string.")]
[EngineDependency (typeof (OpCodeEngine))]
public class AvoidConcatenatingCharsRule : Rule, IMethodRule {