Skip to content

Commit e620026

Browse files
committed
Fixed typo
1 parent c9e560f commit e620026

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ const MyForm = () => (
9696
* [`subscription?: FieldSubscription`](#subscription-fieldsubscription)
9797
* [`validate?: (value: ?any[], allValues: Object) => ?any`](#validate-value-any-allvalues-object--any)
9898
* [`FieldArrayRenderProps`](#fieldarrayrenderprops)
99-
* [`input.name: string`](#inputname-string)
99+
* [`fields.name: string`](#fieldsname-string)
100100
* [`fields.forEach: (iterator: (name: string, index: number) => void) => void`](#fieldsforeach-iterator-name-string-index-number--void--void)
101101
* [`fields.insert: (index: number, value: any) => void`](#fieldsinsert-index-number-value-any--void)
102102
* [`fields.map: (iterator: (name: string, index: number) => any) => any[]`](#fieldsmap-iterator-name-string-index-number--any--any)
103103
* [`fields.move: (from: number, to: number) => void`](#fieldsmove-from-number-to-number--void)
104-
* [`fields.name: string`](#fieldsname-string)
104+
* [`fields.name: string`](#fieldsname-string-1)
105105
* [`fields.pop: () => any`](#fieldspop---any)
106106
* [`fields.push: (value: any) => void`](#fieldspush-value-any--void)
107107
* [`fields.remove: (index: number) => any`](#fieldsremove-index-number--any)
@@ -210,9 +210,9 @@ that mimics an iterable (e.g. it has `map()` and `forEach()` and `length`), and
210210
dependent on you having subscribed to them** with the
211211
[`subscription` prop](#subscription-fieldsubscription)
212212

213-
#### `input.name: string`
213+
#### `fields.name: string`
214214

215-
The name of the field.
215+
The name of the field array.
216216

217217
#### `fields.forEach: (iterator: (name: string, index: number) => void) => void`
218218

0 commit comments

Comments
 (0)