From 77e3605c3947b51da32ea0fdfd9fb44a707e8a86 Mon Sep 17 00:00:00 2001 From: Infant Frontender <34810942+newbornfrontender@users.noreply.github.com> Date: Wed, 2 Oct 2019 12:39:46 +0300 Subject: [PATCH] Fix typo customElements -> customElement --- site/content/docs/03-run-time.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/03-run-time.md b/site/content/docs/03-run-time.md index 8e56f4ce59..551945eade 100644 --- a/site/content/docs/03-run-time.md +++ b/site/content/docs/03-run-time.md @@ -945,7 +945,7 @@ app.count += 1; --- -Svelte components can also be compiled to custom elements (aka web components) using the `customElements: true` compiler option. You should specify a tag name for the component using the `` [element](docs#svelte_options). +Svelte components can also be compiled to custom elements (aka web components) using the `customElement: true` compiler option. You should specify a tag name for the component using the `` [element](docs#svelte_options). ```html