Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo in multipart.md #175

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion posts/en/multipart.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The same result can be achieved using the internal Axios serializer and correspo
axios.postForm('https://httpbin.org/post', {
my_field: 'my value',
my_buffer: new Blob([1,2,3]),
my_file: fileInput.files // FileList will be unwrapped as sepate fields
my_file: fileInput.files // FileList will be unwrapped as separate fields
});
```

Expand Down
2 changes: 1 addition & 1 deletion posts/zh/multipart.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Axios 会将传入数据序列化,因此使用 Axios 提供的 API 可以无
axios.postForm('https://httpbin.org/post', {
my_field: 'my value',
my_buffer: new Blob([1,2,3]),
my_file: fileInput.files // FileList will be unwrapped as sepate fields
my_file: fileInput.files // FileList will be unwrapped as separate fields
});
```

Expand Down