aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-03 14:09:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-03 14:09:29 +0000
commite2555cf83d5d943e0ffae6588c9c12ec4bb460a8 (patch)
tree15f2c936da77ef04f81bf054289cb1c82c22fac1
parentf7c8a572061b97cd1a093f0522362b3de785446a (diff)
edited the -d section slightly
-rw-r--r--docs/curl.16
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/curl.1 b/docs/curl.1
index ccb434cbc..850498b20 100644
--- a/docs/curl.1
+++ b/docs/curl.1
@@ -165,9 +165,9 @@ that can emulate as if a user has filled in a HTML form and pressed the submit
button. Note that the data is sent exactly as specified with no extra
processing (with all newlines cut off). The data is expected to be
\&"url-encoded". This will cause curl to pass the data to the server using the
-content-type application/x-www-form-urlencoded. Compare to -F. If more than
-one \fI-d/--data\fP option is used on the same command line, the data pieces
-specified will be merged together with a separating &-letter. Thus, using '-d
+content-type application/x-www-form-urlencoded. Compare to -F. If this option
+is used more than once on the same command line, the data pieces specified
+will be merged together with a separating &-letter. Thus, using '-d
name=daniel -d skill=lousy' would generate a post chunk that looks like
\&'name=daniel&skill=lousy'.