summaryrefslogtreecommitdiff
path: root/docs/examples/smtp-expn.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/smtp-expn.c')
-rw-r--r--docs/examples/smtp-expn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/examples/smtp-expn.c b/docs/examples/smtp-expn.c
index 6d9d4a4b8..e61b6b4ee 100644
--- a/docs/examples/smtp-expn.c
+++ b/docs/examples/smtp-expn.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -23,7 +23,7 @@
***************************************************************************/
/* <DESC>
- * SMTP example showing how to expand an email mailing list
+ * Expand an SMTP email mailing list
* </DESC>
*/
@@ -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 re-use 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);