diff options
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3')
-rw-r--r-- | docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 b/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 index 1e7345ed3..43bccd7bc 100644 --- a/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 +++ b/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 @@ -45,7 +45,7 @@ Everything used over an HTTPS proxy CURL *curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/"); - /* using a HTTPS proxy */ + /* using an HTTPS proxy */ curl_easy_setopt(curl, CURLOPT_PROXY, "https://localhost:443"); curl_easy_setopt(curl, CURLOPT_PROXY_CAPATH, "/etc/cert-dir"); ret = curl_easy_perform(curl); |