diff options
Diffstat (limited to 'docs/examples/post-callback.c')
-rw-r--r-- | docs/examples/post-callback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/post-callback.c b/docs/examples/post-callback.c index a802c3582..311bc3cae 100644 --- a/docs/examples/post-callback.c +++ b/docs/examples/post-callback.c @@ -73,7 +73,7 @@ int main(void) wt.readptr = data; wt.sizeleft = strlen(data); - /* In windows, this will init the winsock stuff */ + /* In windows, this inits the winsock stuff */ res = curl_global_init(CURL_GLOBAL_DEFAULT); /* Check for errors */ if(res != CURLE_OK) { @@ -141,7 +141,7 @@ int main(void) } #endif - /* Perform the request, res will get the return code */ + /* Perform the request, res gets the return code */ res = curl_easy_perform(curl); /* Check for errors */ if(res != CURLE_OK) |