From fa5b4e5cbd0f71456bc72ac53aa3f5e09d7ac205 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Mon, 31 Aug 2020 07:18:23 -0400 Subject: [PATCH] Fix typo --- docs/components/form.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/form.md b/docs/components/form.md index b3951fd9d..186ffb813 100644 --- a/docs/components/form.md +++ b/docs/components/form.md @@ -4,7 +4,7 @@ Forms collect data that can easily be processed and sent to a server. -All Shoelace's components make use of a [shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM) to encapsulate markup, styles, and behavior. One caveat of this approach is that native `
` elements will not recognize Shoelace form controls. +All Shoelace components make use of a [shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM) to encapsulate markup, styles, and behavior. One caveat of this approach is that native `` elements will not recognize Shoelace form controls. This component solves that problem by serializing _both_ Shoelace form controls and native form controls when the form is submitted. The resulting form data is exposed in the `slSubmit` event as a [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) object.