Skip to content

Commit 006101d

Browse files
authored
docs: fix a couple of typos in 07.forms & 08.inputs (#406)
1 parent edcc0d3 commit 006101d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exercises/07.forms/04.problem.submit/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function App() {
88
// 1️⃣ 🐨 set the method to "POST" then update api.server.ts to handle the POST request
99
// 2️⃣ 🐨 set the encType to "multipart/form-data"
1010
// 3️⃣ 🐨 add an onSubmit handler that calls event.preventDefault()
11-
// 4️⃣ 🐨 create a FormData object from the the form (💰 event.currentTarget)
11+
// 4️⃣ 🐨 create a FormData object from the form (💰 event.currentTarget)
1212
// 5️⃣ 🐨 log the result of Object.fromEntries(formData)
1313
// 6️⃣ 💯 as extra credit, see what happens if you remove the action, method, and encType
1414
>

exercises/08.inputs/05.problem.default-value/README.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ the first 10 characters:
4242
<input type="date" defaultValue={new Date().toISOString().slice(0, 10)} />
4343
```
4444

45-
This applies to `select` as well. Set it the the value of the option you want to
45+
This applies to `select` as well. Set it to the value of the option you want to
4646
have selected, and that one will be selected by default:
4747

4848
```tsx

0 commit comments

Comments
 (0)