diff options
author | Ayesh Karunaratne <ayesh@aye.sh> | 2022-10-26 12:29:35 +0530 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2022-10-27 10:01:30 +0200 |
commit | 4484270afcf3213e86da543941aff5a6d76062a0 (patch) | |
tree | a0e02eb5d09b11d2dfc2dc26b5272960660ce086 /docs/examples/post-callback.c | |
parent | b7260c4fda95196b2fa16f32b5913f25323e5098 (diff) |
misc: typo and grammar fixes
- Replace `Github` with `GitHub`.
- Replace `windows` with `Windows`
- Replace `advice` with `advise` where a verb is used.
- A few fixes on removing repeated words.
- Replace `a HTTP` with `an HTTP`
Closes #9802
Diffstat (limited to 'docs/examples/post-callback.c')
-rw-r--r-- | docs/examples/post-callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/post-callback.c b/docs/examples/post-callback.c index dabcef056..cf74db88d 100644 --- a/docs/examples/post-callback.c +++ b/docs/examples/post-callback.c @@ -101,7 +101,7 @@ int main(void) curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); /* - If you use POST to a HTTP 1.1 server, you can send data without knowing + If you use POST to an HTTP 1.1 server, you can send data without knowing the size before starting the POST if you use chunked encoding. You enable this by adding a header like "Transfer-Encoding: chunked" with CURLOPT_HTTPHEADER. With HTTP 1.0 or without chunked transfer, you must |