]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: remove use of the word 'very'
authorDaniel Stenberg <daniel@haxx.se>
Thu, 7 Sep 2023 17:53:49 +0000 (19:53 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 7 Sep 2023 20:52:07 +0000 (22:52 +0200)
It is mostly superfluous. proselint would complain.

Closes #11818

23 files changed:
docs/cmdline-opts/http3.d
docs/examples/cookie_interface.c
docs/examples/ephiperfifo.c
docs/examples/evhiperfifo.c
docs/examples/ghiper.c
docs/examples/hiperfifo.c
docs/examples/imap-lsub.c
docs/examples/imap-ssl.c
docs/examples/imap-tls.c
docs/examples/pop3-ssl.c
docs/examples/pop3-tls.c
docs/examples/smtp-authzid.c
docs/examples/smtp-expn.c
docs/examples/smtp-mail.c
docs/examples/smtp-mime.c
docs/examples/smtp-ssl.c
docs/examples/smtp-tls.c
docs/examples/smtp-vrfy.c
docs/examples/synctime.c
docs/libcurl/curl_easy_escape.3
docs/libcurl/curl_easy_unescape.3
docs/libcurl/libcurl.m4
docs/libcurl/symbols.pl

index 1f6326fce1c594a9ee3f06920f3325925b0a9cea..89aedd68940ba32c3b016714628222827fcb04bf 100644 (file)
@@ -21,7 +21,7 @@ This option allows a user to avoid using the Alt-Svc method of upgrading to
 HTTP/3 when you know that the target speaks HTTP/3 on the given host and port.
 
 When asked to use HTTP/3, curl will issue a separate attempt to use older HTTP
-versions with a slight delay, so if the HTTP/3 transfer fails or is very slow,
-curl will still try to proceed with an older HTTP version.
+versions with a slight delay, so if the HTTP/3 transfer fails or is slow, curl
+will still try to proceed with an older HTTP version.
 
 Use --http3-only for similar functionality *without* a fallback.
index 131ef65429ab3d09c8d352480b4f11ea9d3daf60..557b57dc2e4b61809fe2aae917db85aad6d10e5a 100644 (file)
@@ -98,7 +98,7 @@ main(void)
     snprintf(nline, sizeof(nline), "%s\t%s\t%s\t%s\t%.0f\t%s\t%s",
              ".example.com", "TRUE", "/", "FALSE",
              difftime(time(NULL) + 31337, (time_t)0),
-             "PREF", "hello example, i like you very much!");
+             "PREF", "hello example, i like you!");
     res = curl_easy_setopt(curl, CURLOPT_COOKIELIST, nline);
     if(res != CURLE_OK) {
       fprintf(stderr, "Curl curl_easy_setopt failed: %s\n",
index f0ee0a1be548e6f23a15e417f8b4e24e67889e0d..0ce68de5dd5befdc8a25a2e04c265e86c0fa88c6 100644 (file)
@@ -386,8 +386,8 @@ static void new_conn(char *url, GlobalInfo *g)
   rc = curl_multi_add_handle(g->multi, conn->easy);
   mcode_or_die("new_conn: curl_multi_add_handle", rc);
 
-  /* note that the add_handle() will set a time-out to trigger very soon so
-     that the necessary socket_action() call will be called by this app */
+  /* note that the add_handle() will set a time-out to trigger soon so that
+     the necessary socket_action() call will be called by this app */
 }
 
 /* This gets called whenever data is received from the fifo */
index 2a361b94a11664abdc60e66734f35a6d9c979a44..17bff2b65ade2c2e281a31201fcc7f52ed2ed82c 100644 (file)
@@ -364,8 +364,8 @@ static void new_conn(char *url, GlobalInfo *g)
   rc = curl_multi_add_handle(g->multi, conn->easy);
   mcode_or_die("new_conn: curl_multi_add_handle", rc);
 
-  /* note that the add_handle() will set a time-out to trigger very soon so
-     that the necessary socket_action() call will be called by this app */
+  /* note that the add_handle() will set a time-out to trigger soon so that
+     the necessary socket_action() call will be called by this app */
 }
 
 /* This gets called whenever data is received from the fifo */
index b30afd1609de93b60d7ec261d44fb58870cf0b76..5a4f4a7057a9316c80be645f1d162dab87583b76 100644 (file)
@@ -323,8 +323,8 @@ static void new_conn(char *url, GlobalInfo *g)
   rc = curl_multi_add_handle(g->multi, conn->easy);
   mcode_or_die("new_conn: curl_multi_add_handle", rc);
 
-  /* note that the add_handle() will set a time-out to trigger very soon so
-     that the necessary socket_action() call will be called by this app */
+  /* note that the add_handle() will set a time-out to trigger soon so that
+     the necessary socket_action() call will be called by this app */
 }
 
 /* This gets called by glib whenever data is received from the fifo */
index 06cb13878bdbc1bec485743609df820e35e50459..9fba341bb6df7d77ff365e64897bf5889658df43 100644 (file)
@@ -358,8 +358,8 @@ static void new_conn(char *url, GlobalInfo *g)
   rc = curl_multi_add_handle(g->multi, conn->easy);
   mcode_or_die("new_conn: curl_multi_add_handle", rc);
 
-  /* note that the add_handle() will set a time-out to trigger very soon so
-     that the necessary socket_action() call will be called by this app */
+  /* note that the add_handle() will set a time-out to trigger soon so that
+     the necessary socket_action() call will be called by this app */
 }
 
 /* This gets called whenever data is received from the fifo */
index 9cb87fe9a3aac533673bc1add1e36cd23606583a..cf45a5fc2da87d7c3cf22a5ec4f83b4642e7d825 100644 (file)
@@ -50,7 +50,7 @@ int main(void)
     /* This is just the server URL */
     curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com");
 
-    /* Set the LSUB command. Note the syntax is very similar to that of a LIST
+    /* Set the LSUB command. Note the syntax is similar to that of a LIST
        command. */
     curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "LSUB \"\" *");
 
index 51d2d1d91399a21259e450da5ece7421567334e5..e920720c013d367f148c4f580084e6fd82a35546 100644 (file)
@@ -73,7 +73,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
 #endif
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
+    /* Since the traffic will be encrypted, it is useful to turn on debug
      * information within libcurl to see what is happening during the
      * transfer */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
index 5a47e4de2085e6474ea15f7521af18a5aa555027..d98f5ef9f950189b22ae43d0c65c39e4db2177c5 100644 (file)
@@ -73,7 +73,7 @@ int main(void)
      * for more information. */
     curl_easy_setopt(curl, CURLOPT_CAINFO, "/path/to/certificate.pem");
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
+    /* Since the traffic will be encrypted, it is useful to turn on debug
      * information within libcurl to see what is happening during the
      * transfer */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
index b9a758833e4dd13ae12dda74b852f2fb1f3cf5ba..e72cf6f38d1589c609111d58ce214a4d238af35d 100644 (file)
@@ -72,7 +72,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
 #endif
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
+    /* Since the traffic will be encrypted, it is useful to turn on debug
      * information within libcurl to see what is happening during the
      * transfer */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
index 976ce4ab2eaf67ea1b2cc8c469a65b6a2075baae..04e6e3b71fbdb2f3a3d0880dcb68e780e398ff8b 100644 (file)
@@ -72,7 +72,7 @@ int main(void)
      * for more information. */
     curl_easy_setopt(curl, CURLOPT_CAINFO, "/path/to/certificate.pem");
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
+    /* Since the traffic will be encrypted, it is useful to turn on debug
      * information within libcurl to see what is happening during the
      * transfer */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
index f13d6113d3128a92e9f72869e2cdc68489d75172..dc24d7f4d5f937190ccbd9cdec24302133f36eaf 100644 (file)
@@ -39,7 +39,7 @@
  */
 
 /* The libcurl options want plain addresses, the viewable headers in the mail
- * can very well get a full name as well.
+ * can get a full name as well.
  */
 #define FROM_ADDR    "<ursel@example.org>"
 #define SENDER_ADDR  "<kurt@example.org>"
@@ -151,9 +151,9 @@ int main(void)
      * should be able to reuse this connection for additional messages
      * (setting CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT as required, and
      * calling curl_easy_perform() again. It may not be a good idea to keep
-     * the connection open for a very long time though (more than a few
-     * minutes may result in the server timing out the connection), and you do
-     * want to clean up in the end.
+     * the connection open for a long time though (more than a few minutes may
+     * result in the server timing out the connection), and you do want to
+     * clean up in the end.
      */
     curl_easy_cleanup(curl);
   }
index 6d896d42dd566980af2c0be3757614f0c5ecd98b..e61b6b4eeeadae42680978f7ef14ca458d96f09b 100644 (file)
@@ -69,9 +69,9 @@ int main(void)
     curl_slist_free_all(recipients);
 
     /* curl will not send the QUIT command until you call cleanup, so you
-     * should be able to reuse this connection for additional requests. It
-     * may not be a good idea to keep the connection open for a very long time
-     * though (more than a few minutes may result in the server timing out the
+     * should be able to reuse this connection for additional requests. It may
+     * not be a good idea to keep the connection open for a long time though
+     * (more than a few minutes may result in the server timing out the
      * connection) and you do want to clean up in the end.
      */
     curl_easy_cleanup(curl);
index 1ad178b9f013aabaef60aab6f5727f2a931c7647..742787824f08863fed23a62d14046311c4d6e42b 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 /* The libcurl options want plain addresses, the viewable headers in the mail
- * can very well get a full name as well.
+ * can get a full name as well.
  */
 #define FROM_ADDR    "<sender@example.org>"
 #define TO_ADDR      "<addressee@example.net>"
@@ -139,9 +139,9 @@ int main(void)
      * should be able to reuse this connection for additional messages
      * (setting CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT as required, and
      * calling curl_easy_perform() again. It may not be a good idea to keep
-     * the connection open for a very long time though (more than a few
-     * minutes may result in the server timing out the connection), and you do
-     * want to clean up in the end.
+     * the connection open for a long time though (more than a few minutes may
+     * result in the server timing out the connection), and you do want to
+     * clean up in the end.
      */
     curl_easy_cleanup(curl);
   }
index 9c46fe901cde5f8fac15e965cb18f514f0126653..36703a1d8290cb22826d543412a7f0039b44cf1b 100644 (file)
@@ -154,9 +154,9 @@ int main(void)
      * should be able to reuse this connection for additional messages
      * (setting CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT as required, and
      * calling curl_easy_perform() again. It may not be a good idea to keep
-     * the connection open for a very long time though (more than a few
-     * minutes may result in the server timing out the connection), and you do
-     * want to clean up in the end.
+     * the connection open for a long time though (more than a few minutes may
+     * result in the server timing out the connection), and you do want to
+     * clean up in the end.
      */
     curl_easy_cleanup(curl);
 
index 1c099a435482253baac19d9ebc6e042665873608..89708408d7486fc1c436a4d59e94c52ecaae86a6 100644 (file)
@@ -146,7 +146,7 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_READDATA, &upload_ctx);
     curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
+    /* Since the traffic will be encrypted, it is useful to turn on debug
      * information within libcurl to see what is happening during the
      * transfer */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
index a3564912a92d851804ddf7ac82bea5bd353b282c..83aab69cbb65b079853138952cfcd923c3bec0ae 100644 (file)
@@ -148,8 +148,9 @@ int main(void)
     curl_easy_setopt(curl, CURLOPT_READDATA, &upload_ctx);
     curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
 
-    /* Since the traffic will be encrypted, it is very useful to turn on debug
-     * information within libcurl to see what is happening during the transfer.
+    /* Since the traffic will be encrypted, it is useful to turn on debug
+     * information within libcurl to see what is happening during the
+     * transfer.
      */
     curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
 
index 4396e0fdb8ef72ecc77972fd2254c3f49eef357b..70da41b065880dadc54f79fa14007a18cb45f726 100644 (file)
@@ -69,9 +69,9 @@ int main(void)
     curl_slist_free_all(recipients);
 
     /* curl will not send the QUIT command until you call cleanup, so you
-     * should be able to reuse this connection for additional requests. It
-     * may not be a good idea to keep the connection open for a very long time
-     * though (more than a few minutes may result in the server timing out the
+     * should be able to reuse this connection for additional requests. It may
+     * not be a good idea to keep the connection open for a long time though
+     * (more than a few minutes may result in the server timing out the
      * connection) and you do want to clean up in the end.
      */
     curl_easy_cleanup(curl);
index 1c0579a08b4a64569287b3f92d4debdfc8b01afb..fcf25d94111b1a4a7e748ffc8a8d47f5513930a4 100644 (file)
@@ -41,7 +41,7 @@
  *
  * Synchronising your computer clock via Internet time server usually relies
  * on DAYTIME, TIME, or NTP protocols. These protocols provide good accurate
- * time synchronization but it does not work very well through a
+ * time synchronization but it does not work well through a
  * firewall/proxy. Some adjustment has to be made to the firewall/proxy for
  * these protocols to work properly.
  *
@@ -54,7 +54,7 @@
  * 2. Webserver system time must in sync with the NTP time server,
  *    or at least provide an accurate time keeping.
  * 3. Webserver HTTP header does not provide the milliseconds units,
- *    so there is no way to get very accurate time.
+ *    so there is no way to get an accurate time.
  * 4. This software could only provide an accuracy of +- a few seconds,
  *    as Round-Trip delay time is not taken into consideration.
  *    Compensation of network, firewall/proxy delay cannot be simply divide
index 55a0eaa3ef23f3717cd81aebc2b746ce4cb726bc..cbae642dd5fcfab80827e4e92ff5f599850a94ea 100644 (file)
@@ -42,8 +42,8 @@ the input \fIstring\fP to find out the size. This function does not accept
 input strings longer than \fBCURL_MAX_INPUT_LENGTH\fP (8 MB).
 
 Since 7.82.0, the \fBcurl\fP parameter is ignored. Prior to that there was
-per-handle character conversion support for some very old operating systems
-such as TPF, but it was otherwise ignored.
+per-handle character conversion support for some old operating systems such as
+TPF, but it was otherwise ignored.
 
 You must \fIcurl_free(3)\fP the returned string when you are done with it.
 .SH ENCODING
index 9be1a9545402590d3d61de798c3d3cde9690807a..e948a9f303f668cff9a5c90cb5acde6037a916a0 100644 (file)
@@ -48,8 +48,8 @@ only return a value up to \fIINT_MAX\fP so no longer string can be returned in
 this parameter.
 
 Since 7.82.0, the \fBcurl\fP parameter is ignored. Prior to that there was
-per-handle character conversion support for some very old operating systems
-such as TPF, but it was otherwise ignored.
+per-handle character conversion support for some old operating systems such as
+TPF, but it was otherwise ignored.
 
 You must \fIcurl_free(3)\fP the returned string when you are done with it.
 .SH EXAMPLE
index 2e215222cce34fb9d60590cb502b6f542702f377..e4a518b5ce11f6cee47069c15fb5d41c0cddaa41 100644 (file)
 # Users may override the detected values by doing something like:
 # LIBCURL="-lcurl" LIBCURL_CPPFLAGS="-I/usr/myinclude" ./configure
 #
-# For the sake of sanity, this macro assumes that any libcurl that is
-# found is after version 7.7.2, the first version that included the
-# curl-config script.  Note that it is very important for people
-# packaging binary versions of libcurl to include this script!
-# Without curl-config, we can only guess what protocols are available,
-# or use curl_version_info to figure it out at runtime.
+# For the sake of sanity, this macro assumes that any libcurl that is found is
+# after version 7.7.2, the first version that included the curl-config script.
+# Note that it is important for people packaging binary versions of libcurl to
+# include this script!  Without curl-config, we can only guess what protocols
+# are available, or use curl_version_info to figure it out at runtime.
 
 AC_DEFUN([LIBCURL_CHECK_CONFIG],
 [
index a92d4ec2e812e05cf930fa69b18b33126281823e..1105ae66b6b79f2ac0687fd6f0e3244f78356f67 100755 (executable)
 #
 ###########################################################################
 #
-# Experience has shown that the symbols-in-versions file is very useful to
-# applications that want to build with a wide range of libcurl versions.
-# It is however easy to get it wrong and the source gets a bit messy with all
-# the fixed numerical comparisons.
+# Experience has shown that the symbols-in-versions file is useful to
+# applications that want to build with a wide range of libcurl versions.  It
+# is however easy to get it wrong and the source gets a bit messy with all the
+# fixed numerical comparisons.
 #
 # The point of this script is to provide an easy-to-use macro for libcurl-
 # using applications to do preprocessor checks for specific libcurl defines,