Skip to content

Commit c7fb732

Browse files
committed
Fixed typo in readme
1 parent 631019f commit c7fb732

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

README.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -76,27 +76,27 @@ const MyForm = () => (
7676

7777
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
7878

79-
* [Rules and Messages](#rules-and-messages)
80-
* [API](#api)
81-
* [Rules](#rules)
82-
* [`max?: Number`](#max-number)
83-
* [`maxLength?: Number`](#maxlength-number)
84-
* [`min?: Number`](#min-number)
85-
* [`minLength?: Number`](#minlength-number)
86-
* [`pattern?: string`](#pattern-string)
87-
* [`required?: boolean`](#required-boolean)
88-
* [`step?: Number`](#step-number)
89-
* [Messages](#messages)
90-
* [`badInput?: string`](#badinput-string)
91-
* [`patternMismatch?: string`](#patternmismatch-string)
92-
* [`rangeOverflow?: string`](#rangeoverflow-string)
93-
* [`rangeUnderflow?: string`](#rangeunderflow-string)
94-
* [`stepMismatch?: string`](#stepmismatch-string)
95-
* [`tooLong?: string`](#toolong-string)
96-
* [`tooShort?: string`](#tooshort-string)
97-
* [`typeMismatch?: string`](#typemismatch-string)
98-
* [`valueMissing?: string`](#valuemissing-string)
99-
* [Internationalization](#internationalization)
79+
- [Rules and Messages](#rules-and-messages)
80+
- [API](#api)
81+
- [Rules](#rules)
82+
- [`max?: Number`](#max-number)
83+
- [`maxLength?: Number`](#maxlength-number)
84+
- [`min?: Number`](#min-number)
85+
- [`minLength?: Number`](#minlength-number)
86+
- [`pattern?: string`](#pattern-string)
87+
- [`required?: boolean`](#required-boolean)
88+
- [`step?: Number`](#step-number)
89+
- [Messages](#messages)
90+
- [`badInput?: string`](#badinput-string)
91+
- [`patternMismatch?: string`](#patternmismatch-string)
92+
- [`rangeOverflow?: string`](#rangeoverflow-string)
93+
- [`rangeUnderflow?: string`](#rangeunderflow-string)
94+
- [`stepMismatch?: string`](#stepmismatch-string)
95+
- [`tooLong?: string`](#toolong-string)
96+
- [`tooShort?: string`](#tooshort-string)
97+
- [`typeMismatch?: string`](#typemismatch-string)
98+
- [`valueMissing?: string`](#valuemissing-string)
99+
- [Internationalization](#internationalization)
100100

101101
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
102102

@@ -190,7 +190,7 @@ The message to display when the value is required, but missing.
190190

191191
## Internationalization
192192

193-
If internationalization is important to your project, you should probably create a component that wraps this component. Pulls the localized messages from the context, and renders:
193+
If internationalization is important to your project, you should probably create a component that wraps this component, pulls the localized messages from the context, and renders:
194194

195195
```jsx
196196
<Field {...props} {...messages} />

0 commit comments

Comments
 (0)