diff options
author | Daniel Stenberg <daniel@haxx.se> | 2025-05-30 10:27:35 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2025-05-30 11:38:35 +0200 |
commit | bdb7d8b004578d4e3906896eb290a80f6e9ebb75 (patch) | |
tree | 3d5d612fa6236b02e29245398d19ba64dfdf694a /docs/examples/imap-ssl.c | |
parent | 7a14898264e9aa48f7f84f631288d728cade5d57 (diff) |
spelling: 'a' vs 'an'
Closes #17487
Diffstat (limited to 'docs/examples/imap-ssl.c')
-rw-r--r-- | docs/examples/imap-ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/imap-ssl.c b/docs/examples/imap-ssl.c index a2774bea4..e632c30e8 100644 --- a/docs/examples/imap-ssl.c +++ b/docs/examples/imap-ssl.c @@ -49,7 +49,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret"); /* This fetches message 1 from the user's inbox. Note the use of - * imaps:// rather than imap:// to request a SSL based connection. */ + * imaps:// rather than imap:// to request an SSL based connection. */ curl_easy_setopt(curl, CURLOPT_URL, "imaps://imap.example.com/INBOX/;UID=1"); |