diff options
Diffstat (limited to 'docs/examples/imap-multi.c')
-rw-r--r-- | docs/examples/imap-multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/imap-multi.c b/docs/examples/imap-multi.c index 6a5f4b070..42fa7381c 100644 --- a/docs/examples/imap-multi.c +++ b/docs/examples/imap-multi.c @@ -56,7 +56,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_USERNAME, "user"); curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret"); - /* This will fetch message 1 from the user's inbox */ + /* This fetches message 1 from the user's inbox */ curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/INBOX/;UID=1"); /* Tell the multi stack about our easy handle */ |