1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

form.d: fix two minor typos

Closes #4843
This commit is contained in:
Aron Rotteveel 2020-01-23 09:24:30 +01:00 committed by Daniel Stenberg
parent 3ecdfb1958
commit 1c532870ed
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -33,11 +33,11 @@ form-field to which the file portrait.jpg will be the input:
curl -F profile=@portrait.jpg https://example.com/upload.cgi
Example: send a your name and shoe size in two text fields to the server:
Example: send your name and shoe size in two text fields to the server:
curl -F name=John -F shoesize=11 https://example.com/
Example: send a your essay in a text field to the server. Send it as a plain
Example: send your essay in a text field to the server. Send it as a plain
text field, but get the contents for it from a local file:
curl -F "story=<hugefile.txt" https://example.com/