Skip to content

Commit 09f68a7

Browse files
authored
chore: more impersonal language
1 parent a235013 commit 09f68a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/guides/form-submission.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ To submit a form in Formik, you need to somehow fire off the provided `handleSub
2323

2424
### Submission
2525

26-
- Proceed with running your submission handler (i.e. `onSubmit` or `handleSubmit`)
26+
- Proceed with running the submission handler (i.e. `onSubmit` or `handleSubmit`)
2727
- Did the submit handler return a promise?
2828
- Yes: Wait until it is resolved or rejected, then set `setSubmitting` to `false`
29-
- No: _You call `setSubmitting(false)`_ in your handler to finish the cycle
29+
- No: _Call `setSubmitting(false)`_ to finish the cycle
3030

3131
## Frequently Asked Questions
3232

@@ -59,7 +59,7 @@ If `isValidating` is `true` and `isSubmitting` is `true`.
5959
</details>
6060

6161
<details>
62-
<summary>Why does isSubmitting remain true after submission?</summary>
62+
<summary>Why does `isSubmitting` remain true after submission?</summary>
6363

6464
If the submission handler returns a promise, make sure it is correctly resolved or rejected when called.
6565

0 commit comments

Comments
 (0)