Hi! There is a line of code in method MaxWords (file: CommonRules.cs) that looks odd to me: e.Description = string.Format("{0} exceed the maximum number of words", e.PropertyName, text1); Is it normal to have 3 arguments for this Format method, since there is only one {x} in the first argument? By the...