summaryrefslogtreecommitdiff
path: root/docs/examples/smtp-multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/smtp-multi.c')
-rw-r--r--docs/examples/smtp-multi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/smtp-multi.c b/docs/examples/smtp-multi.c
index ac867a21a..4ba7ecb60 100644
--- a/docs/examples/smtp-multi.c
+++ b/docs/examples/smtp-multi.c
@@ -101,7 +101,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 in
+ /* 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, they
@@ -116,7 +116,7 @@ int main(void)
recipients = curl_slist_append(recipients, CC_MAIL);
curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients);
- /* We're using a callback function to specify the payload (the headers and
+ /* We are using a callback function to specify the payload (the headers and
* body of the message). You could just use the CURLOPT_READDATA option to
* specify a FILE pointer to read from. */
curl_easy_setopt(curl, CURLOPT_READFUNCTION, payload_source);