From c54cedb43c854b270a38dd696124f7c5fc4cb9f9 Mon Sep 17 00:00:00 2001 From: Hidde Elzinga Date: Mon, 18 Nov 2024 16:05:42 +0100 Subject: [PATCH] Fixed typo --- docs/api/application_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/application_overview.md b/docs/api/application_overview.md index 71c28c48..29d7d968 100644 --- a/docs/api/application_overview.md +++ b/docs/api/application_overview.md @@ -40,7 +40,7 @@ The `RuleBasedModel` delegates the validation of the set of rules that it is com After the model is successfully validated, the initialize of the model is called. In case of the `RuleBasedModel`, this creates an instance of the `RuleProcessor` and initializes it. The `ModelRunner` continues by calling the `execute` method on the `RuleBasedModel` that in turn calls `process_rules` on the `RuleBasedProcessor`. -This method loops over all the specified rules and executes the rules based on there type. So for example, with the `ICellBasedRule` the `RuleBasedProcessor` will loop over all the cells and call the `ICellBasedRule` execute method for every cell. +This method loops over all the specified rules and executes the rules based on their type. So for example, with the `ICellBasedRule` the `RuleBasedProcessor` will loop over all the cells and call the `ICellBasedRule` execute method for every cell. When the model execute has successfully finished with the execute step, the `finalize` method will be called on the model to clean up all resources.