Skip to content

Commit fbdb264

Browse files
committed
Fix a typo
1 parent bf76f8f commit fbdb264

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
"version": "0.1.0",
44
"description": "Encode FormData content into the multipart/form-data format",
55
"repository": "octet-stream/form-data-encoder",
6-
"keywords": ["form-data", "encoder", "multipart", "files-upload", "async-iterator", "form", "node"],
6+
"keywords": [
7+
"form-data",
8+
"encoder",
9+
"multipart",
10+
"files-upload",
11+
"async-iterator",
12+
"form",
13+
"node"
14+
],
715
"main": "./lib/cjs/index.js",
816
"module": "./lib/esm/index.js",
917
"types": "./@type/index.d.ts",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const response = await fetch("https://httpbin.org/post", options)
4343
console.log(await response.json())
4444
```
4545

46-
2. Encoder support different spec-compatible FormData implementation. Let's try it with [`formdata-polyfill`](https://github.com/jimmywarting/FormData):
46+
2. Encoder support different spec-compatible FormData implementations. Let's try it with [`formdata-polyfill`](https://github.com/jimmywarting/FormData):
4747

4848
```js
4949
import {Readable} from "stream"

0 commit comments

Comments
 (0)