summaryrefslogtreecommitdiff
path: root/docs/examples/smtp-mime.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-10-31 16:34:44 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-11-07 23:16:27 +0100
commita28464ae77c201ae29afc9dc9dc756b80a960d4c (patch)
treeefcf174ba85a45906ac7bc4ede3d5d71d5f75d04 /docs/examples/smtp-mime.c
parentd3d079c138e8abaedcb0c557bc466e69e6b79b1c (diff)
downloadcurl-a28464ae77c201ae29afc9dc9dc756b80a960d4c.tar.gz
docs: reduce/avoid English contractions
You're => You are Hasn't => Has not Doesn't => Does not Don't => Do not You'll => You will etc Closes #7930
Diffstat (limited to 'docs/examples/smtp-mime.c')
-rw-r--r--docs/examples/smtp-mime.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/examples/smtp-mime.c b/docs/examples/smtp-mime.c
index 4a2ff19ce..564f920d2 100644
--- a/docs/examples/smtp-mime.c
+++ b/docs/examples/smtp-mime.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2021, 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
@@ -84,7 +84,7 @@ int main(void)
/* This is the URL for your mailserver */
curl_easy_setopt(curl, CURLOPT_URL, "smtp://mail.example.com");
- /* Note that this option isn't strictly required, omitting it will result
+ /* Note that this option is not strictly required, omitting it will result
* in libcurl sending the MAIL FROM command with empty sender data. All
* autoresponses should have an empty reverse-path, and should be directed
* to the address in the reverse-path which triggered them. Otherwise,
@@ -145,13 +145,13 @@ int main(void)
curl_slist_free_all(recipients);
curl_slist_free_all(headers);
- /* curl won't send the QUIT command until you call cleanup, so you should
- * be able to re-use 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.
+ /* curl will not send the QUIT command until you call cleanup, so you
+ * should be able to re-use 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.
*/
curl_easy_cleanup(curl);