summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Rotteveel <rotteveel.aron@gmail.com>2020-01-23 09:24:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2020-01-23 09:28:05 +0100
commit1c532870ed531ee173d8d0f0e067d3105f57f83f (patch)
treebf6c4b3d8e5d65f2f46b583efd5d556061274fde
parent3ecdfb195834d5c59e1c95d8ac87174075a40576 (diff)
downloadcurl-1c532870ed531ee173d8d0f0e067d3105f57f83f.tar.gz
form.d: fix two minor typos
Closes #4843
-rw-r--r--docs/cmdline-opts/form.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/cmdline-opts/form.d b/docs/cmdline-opts/form.d
index 0bbc3701f..7f1aa31c3 100644
--- a/docs/cmdline-opts/form.d
+++ b/docs/cmdline-opts/form.d
@@ -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/