From 7b758e9835f120338c28c788b02cb4d68c76e7ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Wed, 3 Apr 2019 17:16:18 +0200 Subject: documentation: Fix several typos Closes #3724 Reviewed-by: Jakub Zakrzewski Reviewed-by: Daniel Gustafsson --- docs/KNOWN_BUGS | 2 +- docs/TODO | 2 +- docs/cmdline-opts/alt-svc.d | 2 +- docs/libcurl/opts/CURLOPT_ALTSVC.3 | 2 +- docs/libcurl/opts/CURLOPT_ALTSVC_CTRL.3 | 2 +- lib/http2.c | 2 +- 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) -- cgit v1.2.1