From 0e617dbf60dce959e38acbcd0efdf3a178865eaf Mon Sep 17 00:00:00 2001 From: ankur-2dp Date: Thu, 29 Aug 2024 06:57:34 +0530 Subject: [PATCH] Typo_Fixed_in_useField.md (#3978) This Pull request fixes a typing error that was present in the /docs/api/useField.md . --- docs/api/useField.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/useField.md b/docs/api/useField.md index e5e3dd6aa..16bd82015 100644 --- a/docs/api/useField.md +++ b/docs/api/useField.md @@ -3,7 +3,7 @@ id: useField title: useField() --- -`useField` is a custom React hook that will automagically help you hook up inputs to Formik. You can and should use it to build your own custom input primitives. There are 2 ways to use it. +`useField` is a React hook used to thread Formik behaviors into arbitrary field components. It provides the greatest amount of flexibility for scenarios where `Field` is inappropriate. There are two ways to use it. ## Example