Correcting spelling mistakes (#160)

pull/150/head
UP 2021-06-06 10:10:03 +02:00 committed by GitHub
parent fcf172d6df
commit 3a5e31571f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -57,7 +57,7 @@ namespace DemoApp
var resultList = bre.ExecuteAllRulesAsync(workflow.WorkflowName, nestedInput).Result;
resultList.OnSuccess((eventName) => {
Console.WriteLine($"{workflow.WorkflowName} evaluation resulted in succees - {eventName}");
Console.WriteLine($"{workflow.WorkflowName} evaluation resulted in success - {eventName}");
}).OnFail(() => {
Console.WriteLine($"{workflow.WorkflowName} evaluation resulted in failure");
});

View File

@ -15,7 +15,7 @@ namespace RulesEngine.Extensions
/// <summary>
/// Calls the Success Func for the first rule which succeeded among the the ruleReults
/// Calls the Success Func for the first rule which succeeded among the ruleResults
/// </summary>
/// <param name="ruleResultTrees"></param>
/// <param name="onSuccessFunc"></param>

View File

@ -107,7 +107,7 @@ namespace RulesEngine.HelperFunctions
}
/// <summary>
/// To get the child error message recersivly
/// To get the child error message recursively
/// </summary>
/// <param name="childResultTree">childResultTree</param>
/// <param name="ruleResultMessage">ruleResultMessage</param>

View File

@ -62,7 +62,7 @@ namespace RulesEngine.Models
public enum NestedRuleExecutionMode
{
/// <summary>
/// Excutes all nested rules
/// Executes all nested rules
/// </summary>
All,
/// <summary>

View File

@ -82,7 +82,7 @@ namespace RulesEngine.Models
public class RuleResultMessage
{
/// <summary>
/// Constructor will innitilaze the List
/// Constructor will initialize the List
/// </summary>
public RuleResultMessage()
{