Skip to content

Commit 614fdf2

Browse files
Update documentation/docs/06-runtime/05-hydratable.md
Co-authored-by: kaysef <[email protected]>
1 parent 74b878f commit 614fdf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/docs/06-runtime/05-hydratable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Hydratable data
33
---
44

5-
In Svelte, when you want to render asynchonous content data on the server, you can simply `await` it. This is great! However, it comes with a pitall: when hydrating that content on the client, Svelte has to redo the asynchronous work, which blocks hydration for however long it takes:
5+
In Svelte, when you want to render asynchronous content data on the server, you can simply `await` it. This is great! However, it comes with a pitfall: when hydrating that content on the client, Svelte has to redo the asynchronous work, which blocks hydration for however long it takes:
66

77
```svelte
88
<script>

0 commit comments

Comments
 (0)