fix typo in typo fix

This commit is contained in:
Matthew Harris
2016-02-19 01:43:55 +00:00
parent c61666bfdc
commit bbe4110053

View File

@@ -21,7 +21,7 @@ namespace Orchard.Widgets.RuleEngine {
public bool Matches(string expression) {
var evaluator = _evaluators.FirstOrDefault();
if (evaluator == null) {
throw new OrchardException(T("There are currently no scripting engine's enabled"));
throw new OrchardException(T("There are currently no scripting engines enabled"));
}
var result = evaluator.Evaluate(expression, new List<IGlobalMethodProvider> { new GlobalMethodProvider(this) });