diff options
Diffstat (limited to 'docs/examples/imap-append.c')
-rw-r--r-- | docs/examples/imap-append.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/imap-append.c b/docs/examples/imap-append.c index 33566bb64..1839deac1 100644 --- a/docs/examples/imap-append.c +++ b/docs/examples/imap-append.c @@ -99,7 +99,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_USERNAME, "user"); curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret"); - /* This will create a new message in folder "Sent". */ + /* This creates a new message in folder "Sent". */ curl_easy_setopt(curl, CURLOPT_URL, "imap://imap.example.com/Sent"); /* In this case, we are using a callback function to specify the data. You |