summaryrefslogtreecommitdiff
path: root/docs/examples/imap-ssl.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/imap-ssl.c
parentd3d079c138e8abaedcb0c557bc466e69e6b79b1c (diff)
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/imap-ssl.c')
-rw-r--r--docs/examples/imap-ssl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/imap-ssl.c b/docs/examples/imap-ssl.c
index ce890c97b..e43639e16 100644
--- a/docs/examples/imap-ssl.c
+++ b/docs/examples/imap-ssl.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
@@ -51,7 +51,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_URL,
"imaps://imap.example.com/INBOX/;UID=1");
- /* If you want to connect to a site who isn't using a certificate that is
+ /* If you want to connect to a site who is not using a certificate that is
* signed by one of the certs in the CA bundle you have, you can skip the
* verification of the server's certificate. This makes the connection
* A LOT LESS SECURE.
@@ -63,7 +63,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
#endif
- /* If the site you're connecting to uses a different host name that what
+ /* If the site you are connecting to uses a different host name that what
* they have mentioned in their server certificate's commonName (or
* subjectAltName) fields, libcurl will refuse to connect. You can skip
* this check, but this will make the connection less secure. */