summaryrefslogtreecommitdiff
path: root/docs/examples/http2-serverpush.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-10-31 16:34:44 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-11-07 23:16:27 +0100
commita28464ae77c201ae29afc9dc9dc756b80a960d4c (patch)
treeefcf174ba85a45906ac7bc4ede3d5d71d5f75d04 /docs/examples/http2-serverpush.c
parentd3d079c138e8abaedcb0c557bc466e69e6b79b1c (diff)
downloadcurl-a28464ae77c201ae29afc9dc9dc756b80a960d4c.tar.gz
docs: reduce/avoid English contractions
You're => You are Hasn't => Has not Doesn't => Does not Don't => Do not You'll => You will etc Closes #7930
Diffstat (limited to 'docs/examples/http2-serverpush.c')
-rw-r--r--docs/examples/http2-serverpush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/http2-serverpush.c b/docs/examples/http2-serverpush.c
index 3d32f2245..b7c16371a 100644
--- a/docs/examples/http2-serverpush.c
+++ b/docs/examples/http2-serverpush.c
@@ -35,7 +35,7 @@
#include <curl/curl.h>
#ifndef CURLPIPE_MULTIPLEX
-#error "too old libcurl, can't do HTTP/2 server push!"
+#error "too old libcurl, cannot do HTTP/2 server push!"
#endif
static
@@ -180,7 +180,7 @@ static int server_push_callback(CURL *parent,
/* here's a new stream, save it in a new file for each new push */
out = fopen(filename, "wb");
if(!out) {
- /* if we can't save it, deny it */
+ /* if we cannot save it, deny it */
fprintf(stderr, "Failed to create output file for push\n");
return CURL_PUSH_DENY;
}