diff options
author | Samanta Navarro <ferivoz@riseup.net> | 2020-10-03 11:51:02 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-03 22:53:16 +0200 |
commit | 2ead0ca4823da5fb5392330410fb26f5fb97148d (patch) | |
tree | bdd57681919046e111f0b6b7b445797dc2ba33f8 /docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 | |
parent | 6497ed45bd7dc59a9da1d7e35db7456e8f1cf3bf (diff) | |
download | curl-2ead0ca4823da5fb5392330410fb26f5fb97148d.tar.gz |
docs/opts: fix typos in two manual pages
Closes #6039
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3')
-rw-r--r-- | docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 b/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 index ab6198c6f..2e5560231 100644 --- a/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 +++ b/docs/libcurl/opts/CURLOPT_TRAILERFUNCTION.3 @@ -82,7 +82,7 @@ if(curl) { curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_cb); struct curl_slist *headers = NULL; - headers = curl_slist_append(headers, "Trailer: My-super-awsome-trailer"); + headers = curl_slist_append(headers, "Trailer: My-super-awesome-trailer"); res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); /* Set the trailers filling callback */ |