diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-10-31 16:34:44 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-11-07 23:16:27 +0100 |
commit | a28464ae77c201ae29afc9dc9dc756b80a960d4c (patch) | |
tree | efcf174ba85a45906ac7bc4ede3d5d71d5f75d04 /docs/examples/smtp-multi.c | |
parent | d3d079c138e8abaedcb0c557bc466e69e6b79b1c (diff) | |
download | curl-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-multi.c')
-rw-r--r-- | docs/examples/smtp-multi.c | 4 |
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); |