summaryrefslogtreecommitdiff
path: root/docs/examples/http2-upload.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-upload.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-upload.c')
-rw-r--r--docs/examples/http2-upload.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c
index 9485825b3..742177f69 100644
--- a/docs/examples/http2-upload.c
+++ b/docs/examples/http2-upload.c
@@ -39,7 +39,7 @@
#include <curl/mprintf.h>
#ifndef CURLPIPE_MULTIPLEX
-/* This little trick will just make sure that we don't enable pipelining for
+/* This little trick will just make sure that we do not enable pipelining for
libcurls old enough to not have this symbol. It is _not_ defined to zero in
a recent libcurl header. */
#define CURLPIPE_MULTIPLEX 0
@@ -124,7 +124,7 @@ int my_trace(CURL *handle, curl_infotype type,
known_offset = 1;
}
secs = epoch_offset + tv.tv_sec;
- now = localtime(&secs); /* not thread safe but we don't care */
+ now = localtime(&secs); /* not thread safe but we do not care */
curl_msnprintf(timebuf, sizeof(timebuf), "%02d:%02d:%02d.%06ld",
now->tm_hour, now->tm_min, now->tm_sec, (long)tv.tv_usec);