Skip to content

Commit

Permalink
Clarify text
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Nov 15, 2024
1 parent 35c7b96 commit 497eda0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/news/posts/2024-11-15-aiidalab-mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ The observable state variables defined in the `Model` can be leveraged to synchr

### The `Controller`

The purpose of the `Controller` class, the final component of the MVC design pattern, is to handle events and control the flow of information across the app. This means reacting to changes in models and/or user-driven view events, updating either according to the defined app logic. To do so, a `Controller` is typically instantiated with instances of both the `View` and the `Model`, as follows:
The purpose of the `Controller` class, the final component of the MVC design pattern, is to handle events and control the flow of information across the app. This means reacting to changes in models and/or user-driven view events, updating either the `View` or the `Model` according to the defined app logic. To do so, a `Controller` is typically instantiated with instances of both the `View` and the `Model`, as follows:

```python

Expand Down

0 comments on commit 497eda0

Please sign in to comment.