summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-11-01 13:43:11 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-11-01 13:50:27 +0100
commit0d979544fe2b6f9ebc687302bbd993274ad31616 (patch)
treee70d292fedf9a512b07cb7dc80c14ea81cf123ab /docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
parentf907faec790f6bb5dc46102f1efa7e0faeef99ee (diff)
downloadcurl-bagder/less-very.tar.gz
docs: reduce use of "very"bagder/less-very
"Very" should be avoided in most texts. If intensifiers are needed, try find better words instead.
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3 b/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
index a85e9f7ca..7b2e37242 100644
--- a/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
+++ b/docs/libcurl/opts/CURLOPT_DNS_CACHE_TIMEOUT.3
@@ -52,7 +52,7 @@ CURL *curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/foo.bin");
- /* only reuse addresses for a very short time */
+ /* only reuse addresses for a short time */
curl_easy_setopt(curl, CURLOPT_DNS_CACHE_TIMEOUT, 2L);
ret = curl_easy_perform(curl);