diff options
author | Brett Cannon <brett@python.org> | 2024-04-27 03:00:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-27 11:00:38 +0100 |
commit | 897137c6c6fdaee7c1c87c385b8d242fb6aba155 (patch) | |
tree | 179d47f97a99b3526fd67f4c52f58a28e3d31680 /pages/guide/04-server-side-rendering.md | |
parent | 1285567bc5e9e5552cf32672e3d6b2aec00bf706 (diff) | |
download | lustre-897137c6c6fdaee7c1c87c385b8d242fb6aba155.tar.gz lustre-897137c6c6fdaee7c1c87c385b8d242fb6aba155.zip |
🔀 Fix the capitalization of "HTML" in 04-server-side-rendering.md (#119)
Diffstat (limited to 'pages/guide/04-server-side-rendering.md')
-rw-r--r-- | pages/guide/04-server-side-rendering.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/guide/04-server-side-rendering.md b/pages/guide/04-server-side-rendering.md index f4d5c21..05bacc1 100644 --- a/pages/guide/04-server-side-rendering.md +++ b/pages/guide/04-server-side-rendering.md @@ -98,7 +98,7 @@ because of the way it works, it's easy to implement one yourself! We've said many times now that in Lustre, your `view` is just a [pure function](https://github.com/lustre-labs/lustre/blob/main/pages/hints/pure-functions.md) -of your model. We should produce the same HTMl every time we call `view` with the +of your model. We should produce the same HTML every time we call `view` with the same model, no matter how many times we call it. Let's use that to our advantage! We know our app's `init` function is responsible |