summaryrefslogtreecommitdiff
path: root/docs/examples/smtp-vrfy.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/smtp-vrfy.c')
-rw-r--r--docs/examples/smtp-vrfy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples/smtp-vrfy.c b/docs/examples/smtp-vrfy.c
index c85082dac..26819a50a 100644
--- a/docs/examples/smtp-vrfy.c
+++ b/docs/examples/smtp-vrfy.c
@@ -66,10 +66,10 @@ int main(void)
/* Free the list of recipients */
curl_slist_free_all(recipients);
- /* Curl will not send the QUIT command until you call cleanup, so you should
- * be able to re-use this connection for additional requests. It may not be
- * a good idea to keep the connection open for a very long time though
- * (more than a few minutes may result in the server timing out the
+ /* curl will not send the QUIT command until you call cleanup, so you
+ * should be able to re-use this connection for additional requests. It
+ * may not be a good idea to keep the connection open for a very long time
+ * though (more than a few minutes may result in the server timing out the
* connection) and you do want to clean up in the end.
*/
curl_easy_cleanup(curl);