aboutsummaryrefslogtreecommitdiff
path: root/pages/guide/04-server-side-rendering.md
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2024-04-27 03:00:54 -0700
committerGitHub <noreply@github.com>2024-04-27 11:00:54 +0100
commitd3adffedd4c9c3fce9d061fce0097d4649bc13c1 (patch)
treee079f399a7efc8469652f5be8a29b58f7e2a265b /pages/guide/04-server-side-rendering.md
parent897137c6c6fdaee7c1c87c385b8d242fb6aba155 (diff)
downloadlustre-d3adffedd4c9c3fce9d061fce0097d4649bc13c1.tar.gz
lustre-d3adffedd4c9c3fce9d061fce0097d4649bc13c1.zip
🔀 Fix a spelling mistake in 04-server-side-rendering.md (#120)
Diffstat (limited to 'pages/guide/04-server-side-rendering.md')
-rw-r--r--pages/guide/04-server-side-rendering.md2
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 05bacc1..a67ab14 100644
--- a/pages/guide/04-server-side-rendering.md
+++ b/pages/guide/04-server-side-rendering.md
@@ -103,7 +103,7 @@ 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
for producing the initial model, so all we need is a way to make sure the initial
-model on the client is the same as whate the server used to render the page.
+model on the client is the same as what the server used to render the page.
```gleam
pub fn view(model: Int) -> Element(Msg) {