diff options
author | Daniel Stenberg <daniel@haxx.se> | 2024-02-27 12:29:27 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2024-02-27 16:19:43 +0100 |
commit | f540e43b9db8a507e1afa83a66b059aff7c965f2 (patch) | |
tree | dd2777059fc13349dc88ff362520efa2e353363b /docs/examples/default-scheme.c | |
parent | 6e494a2390702048e00e71e202e6210a8486c200 (diff) |
examples: use present tense in comments
remove "will" and some other word fixes
Closes #13003
Diffstat (limited to 'docs/examples/default-scheme.c')
-rw-r--r-- | docs/examples/default-scheme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/default-scheme.c b/docs/examples/default-scheme.c index 525dcc3c3..13e1e08fc 100644 --- a/docs/examples/default-scheme.c +++ b/docs/examples/default-scheme.c @@ -43,7 +43,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); - /* 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) |