aboutsummaryrefslogtreecommitdiff
path: root/pages/guide/02-state-management.md
diff options
context:
space:
mode:
Diffstat (limited to 'pages/guide/02-state-management.md')
-rw-r--r--pages/guide/02-state-management.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/guide/02-state-management.md b/pages/guide/02-state-management.md
index 339b013..26cd752 100644
--- a/pages/guide/02-state-management.md
+++ b/pages/guide/02-state-management.md
@@ -10,8 +10,8 @@ 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 function of that model: if the model doesn't change, the UI
- doesn't change.
+- 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
messages to an update function that constructs a new model.