From 58270e31d81ea32015d5c1e610a1a1ceb92bcaa9 Mon Sep 17 00:00:00 2001 From: Ajit Krishna Date: Tue, 18 May 2021 22:22:59 +0800 Subject: [PATCH] Update copy is not the last lesson in "Special Elements" --- .../tutorial/16-special-elements/07-svelte-options/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/tutorial/16-special-elements/07-svelte-options/text.md b/site/content/tutorial/16-special-elements/07-svelte-options/text.md index 60a9d3b0f8..c3f9f50ce0 100644 --- a/site/content/tutorial/16-special-elements/07-svelte-options/text.md +++ b/site/content/tutorial/16-special-elements/07-svelte-options/text.md @@ -2,7 +2,7 @@ title: --- -Lastly, `` allows you to specify compiler options. +The `` element allows you to specify compiler options. We'll use the `immutable` option as an example. In this app, the `` component flashes whenever it receives new data. Clicking on one of the items toggles its `done` state by creating an updated `todos` array. This causes the *other* `` items to flash, even though they don't end up making any changes to the DOM. @@ -27,4 +27,4 @@ The options that can be set here are: * `namespace="..."` — the namespace where this component will be used, most commonly `"svg"` * `tag="..."` — the name to use when compiling this component as a custom element -Consult the [API reference](docs) for more information on these options. \ No newline at end of file +Consult the [API reference](docs) for more information on these options.