diff options
author | Giacomo Cavalieri <giacomo.cavalieri@icloud.com> | 2024-04-02 10:09:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 09:09:15 +0100 |
commit | e2b57b8e6150f824edbf044fd6222f0c81d6f1b3 (patch) | |
tree | 931e5661180000395554492dee5c2cbe70e48fb7 /pages/guide/02-state-management.md | |
parent | bbefb97ba3d8f117b8cbef769180a4d8425cf145 (diff) | |
download | lustre-e2b57b8e6150f824edbf044fd6222f0c81d6f1b3.tar.gz lustre-e2b57b8e6150f824edbf044fd6222f0c81d6f1b3.zip |
:memo: Fix some typos. (#97)
Diffstat (limited to 'pages/guide/02-state-management.md')
-rw-r--r-- | pages/guide/02-state-management.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/guide/02-state-management.md b/pages/guide/02-state-management.md index 26cd752..27e9020 100644 --- a/pages/guide/02-state-management.md +++ b/pages/guide/02-state-management.md @@ -10,7 +10,7 @@ The MVU architecture is an example of _unidirectional data flow_: - Your model describes the entire state of your application at a given point in time. -- The UI is a [pure](https://github.com/lustre-labs/lustre/blob/main/pages/hints/pure-functions.md)) +- The UI is a [pure](https://github.com/lustre-labs/lustre/blob/main/pages/hints/pure-functions.md) function of that model: if the model doesn't change, the UI doesn't change. - Events from the outside world – user interaction, HTTP responses, ... – send |