diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-24 22:08:16 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-24 22:08:16 +0000 |
commit | 644ad2001936b6064b424a6ca4d30f2c6269cf43 (patch) | |
tree | 9f991bf1eafc88e9f5f147a0b18761ef4047b6b6 /pages/guide/02-state-management.md | |
parent | fcd43b637a132c39e8dff537b0d4c28206ddd076 (diff) | |
download | lustre-644ad2001936b6064b424a6ca4d30f2c6269cf43.tar.gz lustre-644ad2001936b6064b424a6ca4d30f2c6269cf43.zip |
:memo: Fix links.
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 a5d1bf5..de06163 100644 --- a/pages/guide/02-state-management.md +++ b/pages/guide/02-state-management.md @@ -59,7 +59,7 @@ to get used to, but it brings a number of benefits: history of state updates and can be serialised and logged for debugging or testing purposes. -- State updates are **pure**. We will learn more about this in the [next guide](./03-side-effects), +- State updates are **pure**. We will learn more about this in the [next guide](./03-side-effects.html), but for now it is enough to know that this means testing your state changes is much easier because mocking messages is simpler than mocking side effects! |