From a27e33463b8aebd16aa3f94d594513fb76b65095 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Sat, 29 Aug 2020 11:53:24 -0400 Subject: [PATCH] Update docs --- 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 7dc3bbbb6..b9a2ac22a 100644 --- a/docs/components/form.md +++ b/docs/components/form.md @@ -145,7 +145,7 @@ Some input types will automatically trigger constraints, such as `email` and `ur ### Custom Validation -To create a custom validation error, use the `setCustomValidity` method. The form will not be submitted when this method is called with anything other than an empty string, and its message will be shown by the browser as the error message. +To create a custom validation error, use the `setCustomValidity` method. The form will not be submitted when this method is called with anything other than an empty string, and its message will be shown by the browser as the error message. To make the input valid again, call the method again with an empty string as its argument. ```html preview