From 4aab4cb0d735659a2e97fccf3857be914ff04084 Mon Sep 17 00:00:00 2001 From: Zane Hitchcox Date: Sun, 5 May 2024 15:32:50 -0400 Subject: [PATCH] docs: fix typo (#621) --- docs/complex-structures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/complex-structures.md b/docs/complex-structures.md index 00aba224..7e6a325d 100644 --- a/docs/complex-structures.md +++ b/docs/complex-structures.md @@ -6,7 +6,7 @@ Conform support both nested object and array by leveraging a naming convention o Conform uses the `object.property` and `array[index]` syntax to denote data structure. These notations could be combined for nested array as well. e.g. `tasks[0].content`. If the form data has an entry `['tasks[0].content', 'Hello World']`, the object constructed will become `{ tasks: [{ content: 'Hello World' }] }`. -However, there is no need to set the name attribute of each field manually. Conform will always infer the name for you and you will have better type safety if you are using the generated name all +However, there is no need to set the name attribute of each field manually. Conform will always infer the name for you and you will have better type safety if you are using the generated name. ## Nested Object