From 71ff5664a8d631f4e272d1d4c7a581297e558973 Mon Sep 17 00:00:00 2001 From: Nathan Partridge Date: Fri, 13 Sep 2024 07:01:25 -0700 Subject: [PATCH] Fix spelling mistake (#116) --- src/islands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/islands.md b/src/islands.md index af5eef1..fe19f34 100644 --- a/src/islands.md +++ b/src/islands.md @@ -324,7 +324,7 @@ Refresh the page and you should see the content in the browser. Edit the files a You can pass server-only content from a `#[component]` into the children of an `#[island]`, without the island needing to know anything about how to access that data or render that content. -**This is really important.** Passing server `children` to islands means that you can keep islands small. Ideally, you don’t want to slap and `#[island]` around a whole chunk of your page. You want to break that chunk out into an interactive piece, which can be an `#[island]`, and a bunch of additional server content that can be passed to that island as `children`, so that the non-interactive subsections of an interactive part of the page can be kept out of the WASM binary. +**This is really important.** Passing server `children` to islands means that you can keep islands small. Ideally, you don’t want to slap an `#[island]` around a whole chunk of your page. You want to break that chunk out into an interactive piece, which can be an `#[island]`, and a bunch of additional server content that can be passed to that island as `children`, so that the non-interactive subsections of an interactive part of the page can be kept out of the WASM binary. ## Passing Context Between Islands