summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2019-04-03 17:16:18 +0200
committerDaniel Gustafsson <daniel@yesql.se>2019-04-03 22:06:06 +0200
commit7b758e9835f120338c28c788b02cb4d68c76e7ea (patch)
tree0ef8016a9098095217369569f8ef3d80a3c1ab0d
parent6227e2bd07246de7a751b8de8cece6020802c264 (diff)
downloadcurl-7b758e9835f120338c28c788b02cb4d68c76e7ea.tar.gz
documentation: Fix several typos
Closes #3724 Reviewed-by: Jakub Zakrzewski Reviewed-by: Daniel Gustafsson
-rw-r--r--docs/KNOWN_BUGS2
-rw-r--r--docs/TODO2
-rw-r--r--docs/cmdline-opts/alt-svc.d2
-rw-r--r--docs/libcurl/opts/CURLOPT_ALTSVC.32
-rw-r--r--docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.32
-rw-r--r--lib/http2.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index 875456f19..92956c617 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -162,7 +162,7 @@ problems may have been fixed or changed somewhat since this was written!
There's a situation where we can get an error in a HTTP response that is
compressed, when that error is detected after all the actual body contents
- have been received and delivered to the appliction. This is tricky, but is
+ have been received and delivered to the application. This is tricky, but is
ultimately a broken server.
See https://github.com/curl/curl/issues/2719
diff --git a/docs/TODO b/docs/TODO
index 40bc726fc..b6a35a777 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -607,7 +607,7 @@
5.4 Allow SAN names in HTTP/2 server push
- curl only allows HTTP/2 push promise if the provided :autority header value
+ curl only allows HTTP/2 push promise if the provided :authority header value
exactly matches the host name given in the URL. It could be extended to allow
any name that would match the Subject Alternative Names in the server's TLS
certificate.
diff --git a/docs/cmdline-opts/alt-svc.d b/docs/cmdline-opts/alt-svc.d
index dfe636cfc..ba2ded11c 100644
--- a/docs/cmdline-opts/alt-svc.d
+++ b/docs/cmdline-opts/alt-svc.d
@@ -10,7 +10,7 @@ This option enables the alt-svc parser in curl. If the file name points to an
existing alt-svc cache file, that will be used. After a completed transfer,
the cache will be saved to the file name again if it has been modified.
-Specifiy a "" file name (zero length) to avoid loading/saving and make curl
+Specify a "" file name (zero length) to avoid loading/saving and make curl
just handle the cache in memory.
If this option is used several times, curl will load contents from all the
diff --git a/docs/libcurl/opts/CURLOPT_ALTSVC.3 b/docs/libcurl/opts/CURLOPT_ALTSVC.3
index d6b5d87f8..a13edaae8 100644
--- a/docs/libcurl/opts/CURLOPT_ALTSVC.3
+++ b/docs/libcurl/opts/CURLOPT_ALTSVC.3
@@ -31,7 +31,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_ALTSVC, char *filename);
.fi
.SH EXPERIMENTAL
Warning: this feature is early code and is marked as experimental. It can only
-be enabled by explictly telling configure with \fB--enable-alt-svc\fP. You are
+be enabled by explicitly telling configure with \fB--enable-alt-svc\fP. You are
advised to not ship this in production before the experimental label is
removed.
.SH DESCRIPTION
diff --git a/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 b/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3
index bdbb382a3..c9575c9fe 100644
--- a/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3
+++ b/docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3
@@ -38,7 +38,7 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_ALTSVC_CTRL, long bitmask);
.fi
.SH EXPERIMENTAL
Warning: this feature is early code and is marked as experimental. It can only
-be enabled by explictly telling configure with \fB--enable-alt-svc\fP. You are
+be enabled by explicitly telling configure with \fB--enable-alt-svc\fP. You are
advised to not ship this in production before the experimental label is
removed.
.SH DESCRIPTION
diff --git a/lib/http2.c b/lib/http2.c
index b5c53cdf6..e0ec29689 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -970,7 +970,7 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
char *h;
if(!strcmp(":authority", (const char *)name)) {
- /* psuedo headers are lower case */
+ /* pseudo headers are lower case */
int rc = 0;
char *check = aprintf("%s:%d", conn->host.name, conn->remote_port);
if(!check)