Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 66bad3f

Browse files
authoredJun 22, 2021
fix typo in 5-network/02-formdata
1 parent b19a6f0 commit 66bad3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎5-network/02-formdata/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The server reads form data and the file, as if it were a regular form submission
168168

169169
[FormData](https://xhr.spec.whatwg.org/#interface-formdata) objects are used to capture HTML form and submit it using `fetch` or another network method.
170170

171-
We can either create `new FormData(form)` from an HTML form, or create a object without a form at all, and then append fields with methods:
171+
We can either create `new FormData(form)` from an HTML form, or create an object without a form at all, and then append fields with methods:
172172

173173
- `formData.append(name, value)`
174174
- `formData.append(name, blob, fileName)`

0 commit comments

Comments
 (0)
Please sign in to comment.